Author: ubernostrum
Date: 2008-09-30 12:49:26 -0500 (Tue, 30 Sep 2008)
New Revision: 9102

Modified:
   django/branches/releases/1.0.X/django/__init__.py
Log:
Update django.VERSION in 1.0.x branch per previous discussion

Modified: django/branches/releases/1.0.X/django/__init__.py
===================================================================
--- django/branches/releases/1.0.X/django/__init__.py   2008-09-30 17:45:58 UTC 
(rev 9101)
+++ django/branches/releases/1.0.X/django/__init__.py   2008-09-30 17:49:26 UTC 
(rev 9102)
@@ -1,9 +1,17 @@
-VERSION = (1, 0, 'post-release-SVN')
+VERSION = (1, 0, 1, 'alpha', 0)
 
 def get_version():
-    "Returns the version as a human-format string."
-    v = '.'.join([str(i) for i in VERSION[:-1]])
-    if VERSION[-1]:
-        from django.utils.version import get_svn_revision
-        v = '%s-%s-%s' % (v, VERSION[-1], get_svn_revision())
-    return v
+    version = '%s.%s' % (VERSION[0], VERSION[1])
+    if VERSION[2]:
+        version = '%s.%s' % (version, VERSION[2])
+    if VERSION[3:] == ('alpha', 0):
+        version = '%s pre-alpha' % version
+    else:
+        version = '%s %s' % (version, VERSION[3])
+        if VERSION[3] != 'final':
+            version = '%s %s' % (version, VERSION[4])
+    from django.utils.version import get_svn_revision
+    svn_rev = get_svn_revision()
+    if svn_rev != u'SVN-unknown':
+        version = "%s %s" % (version, svn_rev)
+    return version


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django 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/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to