Commit bea593a9 authored by Jondy Zhao's avatar Jondy Zhao

Fix indentation

parent 17628860
...@@ -35,7 +35,6 @@ if sys.platform.startswith("cygwin"): ...@@ -35,7 +35,6 @@ if sys.platform.startswith("cygwin"):
else: else:
sys.exit('platform %s is not supported' % sys.platform) sys.exit('platform %s is not supported' % sys.platform)
def main(): def main():
setup_args = dict( setup_args = dict(
name='netdrive', name='netdrive',
...@@ -57,12 +56,12 @@ def main(): ...@@ -57,12 +56,12 @@ def main():
'zc.buildout', # plays with buildout 'zc.buildout', # plays with buildout
'zc.recipe.egg', # for scripts generation 'zc.recipe.egg', # for scripts generation
], ],
entry_points={ entry_points={
'console_scripts': [ 'console_scripts': [
'netdrive-reporter = netreport:main', 'netdrive-reporter = netreport:main',
], ],
} },
) )
if extensions is not None: if extensions is not None:
setup_args["ext_modules"] = extensions setup_args["ext_modules"] = extensions
setup(**setup_args) setup(**setup_args)
......
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