Skip to content

Commit

Permalink
changin os.exit to sys.exit
Browse files Browse the repository at this point in the history
Fixes #5009
  • Loading branch information
psdh committed Feb 21, 2015
1 parent b589735 commit 12e2f30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/servo/command_base.py
Expand Up @@ -152,7 +152,7 @@ def build_env(self, gonk=False):
if "GONKDIR" not in env:
# Things can get pretty opaque if this hasn't been set
print("Please set $GONKDIR in your environment or servobild file")
os.exit(1)
sys.exit(1)
if self.config["gonk"]["product"]:
env["GONK_PRODUCT"] = self.config["gonk"]["product"]

Expand Down

5 comments on commit 12e2f30

@bors-servo
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

saw approval from Manishearth
at psdh@12e2f30

@bors-servo
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

merging psdh/servo/ossys = 12e2f30 into auto

@bors-servo
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

psdh/servo/ossys = 12e2f30 merged ok, testing candidate = a5f52bf

@bors-servo
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bors-servo
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fast-forwarding master to auto = a5f52bf

Please sign in to comment.