Author: jtauber
Date: Wed Jan 28 18:54:20 2009
New Revision: 39
Modified:
trunk/bookmarks/__init__.py
Log:
added version number and code
Modified: trunk/bookmarks/__init__.py
==============================================================================
--- trunk/bookmarks/__init__.py (original)
+++ trunk/bookmarks/__init__.py Wed Jan 28 18:54:20 2009
@@ -0,0 +1,9 @@
+VERSION = (0, 1, 0, "dev")
+
+def get_version():
+ if VERSION[3] != "final":
+ return "%s.%s.%s%s" % (VERSION[0], VERSION[1], VERSION[2],
VERSION[3])
+ else:
+ return "%s.%s.%s" % (VERSION[0], VERSION[1], VERSION[2])
+
+__version__ = get_version()
\ No newline at end of file
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"pinax-updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/pinax-updates?hl=en
-~----------~----~----~----~------~----~------~--~---