diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-12-13 23:08:21 +0100 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-12-13 23:08:21 +0100 |
commit | cfa32735093dc01065be40312682c694d8c152d5 (patch) | |
tree | dc68608ca53c171b51cf59b4b367890848483c24 /docs | |
parent | fix pornhub.com (diff) | |
download | pyload-cfa32735093dc01065be40312682c694d8c152d5.tar.xz |
new locale files
Diffstat (limited to 'docs')
-rw-r--r-- | docs/conf.py | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/docs/conf.py b/docs/conf.py index 331d13144..9d2cf98f9 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -58,10 +58,17 @@ copyright = u'2011, pyLoad Team' # |version| and |release|, also used in various other places throughout the # built documents. # -# The short X.Y version. -version = '0.4' # The full version, including alpha/beta/rc tags. -release = '0.4.8' +""" [[[cog +from pavement import options +v = options.version.split(".") +cog.outl("version = '%s'" % ".".join(v[:2])) +cog.outl("release = '%s'" % ".".join(v)) +]]]""" +version = '0.4' +release = '0.4.9' +# [[[end]]] + # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. |