diff --git a/setup.py b/setup.py index b6ed314..eb9ec2c 100644 --- a/setup.py +++ b/setup.py @@ -62,7 +62,7 @@ if 'install' in sys.argv: # Install man pages the crappy hacky way, because setuptools doesn't # have any facility to do it. man_path = '/usr/local/share/man/1' - man_pages = filter(lambda x: os.path.isfile('./doc/troff/'+x, - os.listdir('./doc/troff') + man_pages = filter(lambda x: os.path.isfile('./doc/troff/'+x), + os.listdir('./doc/troff')) for page in man_pages: shutil.copyfile('./doc/troff/'+page, man_path)