Cosmetic fix

About -> Credits takes a list of strings in .set_authors() as opposed to
a single string. Now the credit popup looks about right.
This commit is contained in:
Mika Bostrom 2009-12-10 06:34:19 +02:00
parent a0a6207810
commit 835fc98f6f

View File

@ -202,7 +202,8 @@ class fpdb:
dia.set_comments("GTK AboutDialog comments here")
dia.set_license("GPL v3")
dia.set_website("http://fpdb.sourceforge.net/")
dia.set_authors("Steffen, Eratosthenes, s0rrow, EricBlade, _mt, and others")
dia.set_authors(['Steffen', 'Eratosthenes', 's0rrow',
'EricBlade', '_mt', 'and others'])
dia.set_program_name("FPDB")
dia.run()
dia.destroy()