diff options
| author | Julian Andres Klode <jak@debian.org> | 2010-07-23 16:32:54 +0200 |
|---|---|---|
| committer | Julian Andres Klode <jak@debian.org> | 2010-07-23 16:32:54 +0200 |
| commit | d4982e0e6d4b4fefb55043bb999784f5cfb2b686 (patch) | |
| tree | e1b1494fd819218e3f61d52ba102bb4901443796 /doc | |
| parent | 7219ee607e72438bbbb755caebdc7f617ee440f4 (diff) | |
| download | python-apt-d4982e0e6d4b4fefb55043bb999784f5cfb2b686.tar.gz | |
* doc/conf.py:
- Correctly handle non-digit characters in version (ignore everything
after them).
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/source/conf.py | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/doc/source/conf.py b/doc/source/conf.py index 05490da7..18c8642e 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -78,8 +78,13 @@ except KeyError: release = p2.communicate()[0] # Handle the alpha release scheme -release_raw = release.split("~")[0].split(".")[2] -if release_raw.isdigit() and int(release_raw) >= 90: +release_raw = "0" +for c in release.split("~")[0].split(".")[2]: + if not c.isdigit(): + break + release_raw += c + +if int(release_raw) >= 90: version_s = release.split("~")[0].split(".")[:3] # Set the version to 0.X.100 if the release is 0.X.9Y (0.7.90 => 0.7.100) # Use |
