From 999207ce89b0eb41e76d1bec587d39937b5a187d Mon Sep 17 00:00:00 2001 From: calvin Date: Fri, 3 Sep 2004 11:53:09 +0000 Subject: [PATCH] remove false comma git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@1701 e7d03fd6-7b0d-0410-9947-9c21f3af8025 --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index e1e064c3..2b1589c8 100755 --- a/setup.py +++ b/setup.py @@ -159,13 +159,13 @@ if os.name=='nt': macros = [('YY_NO_UNISTD_H', None)] cargs = [] # add post-install script for the bdist_wininst command - scripts = ['linkchecker', 'install-linkchecker.py'], + scripts = ['linkchecker', 'install-linkchecker.py'] else: macros = [] # for gcc 3.x we could add -std=gnu99 to get rid of warnings, but # that breaks other compilers cargs = ["-pedantic"] - scripts = ['linkchecker'], + scripts = ['linkchecker'] myname = "Bastian Kleineidam" myemail = "calvin@users.sourceforge.net"