From 2476cbfa1b7bf4a22e519589f48a8cd706fcb6e0 Mon Sep 17 00:00:00 2001 From: Romain Bignon Date: Sat, 3 Mar 2012 23:00:45 +0100 Subject: [PATCH] fix application URL --- tools/make_man.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/make_man.py b/tools/make_man.py index 5f0babf5..0a5a7964 100755 --- a/tools/make_man.py +++ b/tools/make_man.py @@ -169,8 +169,7 @@ For full COPYRIGHT see COPYING file with weboob package. footer += '\n\n "~/.weboob/%s"' % app.APPNAME # Skip internal applications. - if not '-' in application.APPNAME: - footer += "\n\n.SH SEE ALSO\nHome page: http://weboob.org/%s" % application.APPNAME.capitalize() + footer += "\n\n.SH SEE ALSO\nHome page: http://weboob.org/applications/%s" % application.APPNAME mantext = u"%s\n%s\n%s\n%s" % (header, name, helptext, footer) with open(os.path.join(BASE_PATH, DEST_DIR, "%s.1" % script_name), 'w+') as manfile: