From ec0db8b7ccd026126c0a35e11abbd5a0859c3695 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Sat, 10 Jul 2010 16:40:10 +0200 Subject: [PATCH] change version indicator to sth more appropriate --- pyfpdb/fpdb.pyw | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyfpdb/fpdb.pyw b/pyfpdb/fpdb.pyw index b97d5ca0..3ceb68b3 100755 --- a/pyfpdb/fpdb.pyw +++ b/pyfpdb/fpdb.pyw @@ -115,7 +115,7 @@ import Database import Configuration import Exceptions -VERSION = "0.21" +VERSION = "0.20 plus git" class fpdb: @@ -915,7 +915,7 @@ You can find the full license texts in agpl-3.0.txt, gpl-2.0.txt and gpl-3.0.txt self.window = gtk.Window(gtk.WINDOW_TOPLEVEL) self.window.connect("delete_event", self.delete_event) self.window.connect("destroy", self.destroy) - self.window.set_title("Free Poker DB - v%s or higher" % (VERSION, )) + self.window.set_title("Free Poker DB - v%s" % (VERSION, )) self.window.set_border_width(1) defx, defy = 900, 720 sx, sy = gtk.gdk.screen_width(), gtk.gdk.screen_height()