]> granicus.if.org Git - python/commitdiff
Added version number in the About window
authorBarry Warsaw <barry@python.org>
Tue, 6 Oct 1998 18:52:59 +0000 (18:52 +0000)
committerBarry Warsaw <barry@python.org>
Tue, 6 Oct 1998 18:52:59 +0000 (18:52 +0000)
Tools/pynche/PyncheWidget.py

index 7c709352c502274af171c6cd4e8a7efe49f1aef7..dff66c0bf6ff7974d1777d373110d64ea82601a5 100644 (file)
@@ -89,10 +89,12 @@ class PyncheWidget:
         return self.__root
 
     def __popup_about(self, event=None):
-        tkMessageBox.showinfo('About Pynche 1.0',
+        from pynche import __version__
+        tkMessageBox.showinfo('About Pynche ' + __version__,
                               '''\
-Pynche -- the PYthonically
-Natural Color and Hue Editor
+Pynche %s
+The PYthonically Natural
+Color and Hue Editor
 
 Copyright (C) 1998
 Barry A. Warsaw
@@ -100,7 +102,7 @@ All rights reserved
 
 For information about Pynche
 contact: Barry A. Warsaw
-email:   bwarsaw@python.org''')
+email:   bwarsaw@python.org''' % __version__)
 
     def __popup_text(self, event=None):
         if not self.__textwin: