summaryrefslogtreecommitdiffstats
path: root/product.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2006-03-13 19:05:48 +0000
committerJeremy Katz <katzj@redhat.com>2006-03-13 19:05:48 +0000
commit998a019d6c905c9fe9d966991c8858caeffaa92f (patch)
tree8142e13720097c47281bf47e283542199501667d /product.py
parentb72f2870bea15519e40800133ebcc6faa4aaa5a7 (diff)
downloadanaconda-998a019d6c905c9fe9d966991c8858caeffaa92f.tar.gz
anaconda-998a019d6c905c9fe9d966991c8858caeffaa92f.tar.xz
anaconda-998a019d6c905c9fe9d966991c8858caeffaa92f.zip
2006-03-13 Jeremy Katz <katzj@redhat.com>
* dmraid.py: Fix syntax error (#185275) * fsset.py (swapFileSystem.mount): Likewise. * product.py: Likewise.
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 3c0bff2b7..0372c658c 100644
--- a/product.py
+++ b/product.py
@@ -18,7 +18,7 @@ elif os.access("/.buildstamp", os.R_OK):
path = "/.buildstamp"
elif os.environ.has_key("PRODBUILDPATH") and \
os.access(os.environ["PRODBUILDPATH"], os.R_OK):
- path = os.environ[PRODBUILDPATH]
+ path = os.environ["PRODBUILDPATH"]
else:
path = None