summaryrefslogtreecommitdiff
path: root/doc/source/conf.py
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2010-08-05 22:41:57 +0200
committerMichael Vogt <michael.vogt@ubuntu.com>2010-08-05 22:41:57 +0200
commit7bc62fa42772b72f5a4f68729e6fc3aabfb909e8 (patch)
tree73661ee354e5403d61ca07dc96d8bec98d1b25f4 /doc/source/conf.py
parentbfa4d690e7262c19b2f0bfc3905177c37f42cf34 (diff)
parentad19dcb4f3608779551383103a23ccceb7df3e9c (diff)
downloadpython-apt-7bc62fa42772b72f5a4f68729e6fc3aabfb909e8.tar.gz
merged from debian-sid, fix crash in Dsc file handling
Diffstat (limited to 'doc/source/conf.py')
-rw-r--r--doc/source/conf.py9
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