Update of /cvsroot/pythoncard/PythonCard
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12233
Modified Files:
__version__.py
Log Message:
switched to list comprehension to avoid duplicating version numbers
Index: __version__.py
===================================================================
RCS file: /cvsroot/pythoncard/PythonCard/__version__.py,v
retrieving revision 1.37
retrieving revision 1.38
diff -C2 -d -r1.37 -r1.38
*** __version__.py 3 Oct 2004 18:53:22 -0000 1.37
--- __version__.py 3 Oct 2004 19:42:08 -0000 1.38
***************
*** 14,16 ****
VERSION = (0, 8, 1)
! VERSION_STRING = '0.8.1'
--- 14,16 ----
VERSION = (0, 8, 1)
! VERSION_STRING = ".".join([str(digit) for digit in VERSION])
|