From 835fc98f6f0228345943882c8c4cbc0b8fa1405b Mon Sep 17 00:00:00 2001 From: Mika Bostrom Date: Thu, 10 Dec 2009 06:34:19 +0200 Subject: [PATCH] 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. --- pyfpdb/fpdb.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyfpdb/fpdb.py b/pyfpdb/fpdb.py index d5f4faec..f35e0d24 100755 --- a/pyfpdb/fpdb.py +++ b/pyfpdb/fpdb.py @@ -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()