summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorNathan Wilcox <inoshiro@lindenlab.com>2010-01-08 15:10:59 -0800
committerNathan Wilcox <inoshiro@lindenlab.com>2010-01-08 15:10:59 -0800
commit5d2167c66a027cc5e4e002dca51e163b0d08fe42 (patch)
treedb0a118abb468d3b5c4de8d53a8a4a27ff8c6f55 /indra
parent84ff7485ae161fe35963da2f35e111b685719ece (diff)
Fix a typo bug caught by pyflakes. eys.exit(1) -> sys.exit(1)
Diffstat (limited to 'indra')
-rwxr-xr-xindra/develop.py2
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):