summaryrefslogtreecommitdiffstats
path: root/product.py
diff options
context:
space:
mode:
authorPeter Jones <pjones@redhat.com>2008-03-17 13:57:30 -0400
committerPeter Jones <pjones@pjones2.localdomain>2008-03-17 13:57:30 -0400
commit6727e5583a6b0ab1b1bbfe907872d11760334d94 (patch)
tree5e861c9813ebca6746bb5157874d0c9bea02c47a /product.py
parentf244ec273e27c07b8875546efa498e1f5c187392 (diff)
downloadanaconda-6727e5583a6b0ab1b1bbfe907872d11760334d94.tar.gz
anaconda-6727e5583a6b0ab1b1bbfe907872d11760334d94.tar.xz
anaconda-6727e5583a6b0ab1b1bbfe907872d11760334d94.zip
Fix off by one error reading .buildstamp
Diffstat (limited to 'product.py')
-rw-r--r--product.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/product.py b/product.py
index 52a8a246f..68df00c66 100644
--- a/product.py
+++ b/product.py
@@ -46,7 +46,7 @@ if path is not None:
productName = lines[1][:-1]
productVersion = lines[2][:-1]
if len(lines) >= 4:
- bugUrl = lines[4][:-1]
+ bugUrl = lines[3][:-1]
if os.environ.has_key("ANACONDA_PRODUCTNAME"):
productName = os.environ["ANACONDA_PRODUCTNAME"]