From: noah morrison Date: Tue, 18 Nov 2014 21:51:49 +0000 (-0500) Subject: pep8 X-Git-Url: https://git.devinivas.org/?a=commitdiff_plain;h=b3bbcf8dfbed94284c97ed13f2b1480953a25552;p=chevron.git pep8 --- diff --git a/chevron/chevron.py b/chevron/chevron.py index 812106b..921d8ee 100755 --- a/chevron/chevron.py +++ b/chevron/chevron.py @@ -393,6 +393,7 @@ def main(data, template, **kwargs): args.update(kwargs) return render(**args) + def cli_main(): try: print(main(argv[1], argv[2])) diff --git a/setup.py b/setup.py index 3e51510..5d282a8 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup(name='chevron', author_email='noah@morrison.ph', url='https://github.com/noahmorrison/chevron', packages=['chevron'], - entry_points = { + entry_points={ 'console_scripts': ['chevron=chevron:cli_main'] } - ) + )