reverted line breaks around get_generators

This commit is contained in:
Nick Bolton 2012-07-29 17:31:16 +00:00
parent 54883ad523
commit 1ca645602a
1 changed files with 0 additions and 6 deletions

View File

@ -956,17 +956,11 @@ class InternalCommands:
def get_generators(self):
if sys.platform == 'win32':
return self.win32_generators
elif sys.platform in ['linux2', 'sunos5', 'freebsd7', 'aix5']:
return self.unix_generators
elif sys.platform == 'darwin':
return self.darwin_generators
else:
raise Exception('Unsupported platform: ' + sys.platform)