diff --git a/taggerwindow.py b/taggerwindow.py
index cd92d70..003a368 100644
--- a/taggerwindow.py
+++ b/taggerwindow.py
@@ -335,6 +335,8 @@ class TaggerWindow( QtGui.QMainWindow):
website = "http://code.google.com/p/comictagger"
email = "comictagger@gmail.com"
+ license_link = "http://www.apache.org/licenses/LICENSE-2.0"
+ license_name = "Apache License 2.0"
msgBox = QtGui.QMessageBox()
msgBox.setWindowTitle( self.tr("About " + self.appName ) )
@@ -344,7 +346,8 @@ class TaggerWindow( QtGui.QMainWindow):
+ self.appName + " v" + self.version + "
"
+ "(c)2012 Anthony Beville
"
+ "{0}
".format(website)
- + "{0}".format(email) )
+ + "{0}
".format(email)
+ + "License: {1}".format(license_link, license_name) )
msgBox.setStandardButtons( QtGui.QMessageBox.Ok )
msgBox.exec_()