diff options
author | Nathan Wilcox <inoshiro@lindenlab.com> | 2010-01-08 15:10:59 -0800 |
---|---|---|
committer | Nathan Wilcox <inoshiro@lindenlab.com> | 2010-01-08 15:10:59 -0800 |
commit | 5d2167c66a027cc5e4e002dca51e163b0d08fe42 (patch) | |
tree | db0a118abb468d3b5c4de8d53a8a4a27ff8c6f55 /indra | |
parent | 84ff7485ae161fe35963da2f35e111b685719ece (diff) |
Fix a typo bug caught by pyflakes. eys.exit(1) -> sys.exit(1)
Diffstat (limited to 'indra')
-rwxr-xr-x | indra/develop.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/develop.py b/indra/develop.py index eaecdd0ab6..9d606da1d9 100755 --- a/indra/develop.py +++ b/indra/develop.py @@ -504,7 +504,7 @@ class WindowsSetup(PlatformSetup): break else: print >> sys.stderr, 'Cannot find a Visual Studio installation!' - eys.exit(1) + sys.exit(1) return self._generator def _set_generator(self, gen): |