Commit 2d7605b0 authored by Wez Furlong's avatar Wez Furlong Committed by Facebook Github Bot

fix apparent typo in fbcode_builder.py

Summary:
I noticed this while testing some changes; the comment
doesn't seem to match up to the `raise` statement, and attempting
to throw a list fails in python.

Reviewed By: strager

Differential Revision: D9566018

fbshipit-source-id: 563e43dfd30867993cc2a0f816db3b835a52e6df
parent 30eba07a
......@@ -238,7 +238,7 @@ class FBCodeBuilder(object):
return self.step('Install packages for Debian-based OS', actions)
def debian_ccache_setup_steps(self):
raise [] # It's ok to ship a renderer without ccache support.
return [] # It's ok to ship a renderer without ccache support.
def github_project_workdir(self, project, path):
# Only check out a non-default branch if requested. This especially
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment