diff -urNad specto-0.2.0~/spectlib/about.py specto-0.2.0/spectlib/about.py
--- specto-0.2.0~/spectlib/about.py 2007-02-09 15:56:02.000000000 +1100
+++ specto-0.2.0/spectlib/about.py 2007-02-09 15:56:46.000000000 +1100
@@ -39,7 +39,7 @@
version_file=open(version_file_path, 'r')
version = str(version_file.readline()[:-1]) # "[:-1]" means we omit the last character, which is "\n".
version_file.close
- license_file_path = (spectlib.util.get_path(category="doc") + 'COPYING')
+ license_file_path = '/usr/share/common-licenses/GPL'
license_file = open(license_file_path, "r")
license = license_file.read()
license_file.close()