lds specific data moved

svn: r6185
This commit is contained in:
Don Allingham
2006-03-21 06:23:45 +00:00
parent 932025dfda
commit e6f0bf7dda
16 changed files with 325 additions and 310 deletions

View File

@ -406,9 +406,9 @@ class ViewManager:
about = gtk.AboutDialog()
about.set_name(const.program_name)
about.set_version(const.version)
about.set_copyright(const.copyright)
about.set_copyright(const.copyright_msg)
try:
f = open(const.license,"r")
f = open(const.license_file,"r")
about.set_license(f.read().replace('\x0c',''))
f.close()
except: