From c27d50bddafaecca41133a59bdaf5953f99cde92 Mon Sep 17 00:00:00 2001 From: Andreas Preikschat Date: Mon, 8 Aug 2011 08:30:25 +0200 Subject: [PATCH] fixed link to 'Contributing' site --- openlp/core/ui/aboutform.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/openlp/core/ui/aboutform.py b/openlp/core/ui/aboutform.py index 2909503f6..4e031656c 100644 --- a/openlp/core/ui/aboutform.py +++ b/openlp/core/ui/aboutform.py @@ -61,6 +61,5 @@ class AboutForm(QtGui.QDialog, Ui_AboutDialog): Launch a web browser and go to the contribute page on the site. """ import webbrowser - url = u'http://www.openlp.org/en/documentation/introduction/' \ - + u'contributing.html' + url = u'http://openlp.org/en/documentation/introduction/contributing' webbrowser.open_new(url)