Django

Code

root/django/branches/unicode/django/__init__.py

Revision 5462, 210 bytes (checked in by mtredinnick, 1 year ago)

unicode: Merged changes from trunk up to [5460].

  • Property svn:eol-style set to native
  • Property svn:keywords set to LastChangedRevision
Line 
1 VERSION = (0, 97, 'pre')
2
3 def get_version():
4     "Returns the version as a human-format string."
5     v = '.'.join([str(i) for i in VERSION[:-1]])
6     if VERSION[-1]:
7         v += '-' + VERSION[-1]
8     return v
Note: See TracBrowser for help on using the browser.