summaryrefslogtreecommitdiffstats
path: root/image.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2008-01-02 16:16:17 -0500
committerChris Lumens <clumens@redhat.com>2008-01-02 16:18:02 -0500
commitf613f96036d9ad74b7ed08a37a92e50ea46dc5f4 (patch)
treeadf3bec6686187bd05576491451215e8ef4ab5f9 /image.py
parent2b04c9801e4dcf2938804c9ac6f5d1fd3bd9ce00 (diff)
downloadanaconda-f613f96036d9ad74b7ed08a37a92e50ea46dc5f4.tar.gz
anaconda-f613f96036d9ad74b7ed08a37a92e50ea46dc5f4.tar.xz
anaconda-f613f96036d9ad74b7ed08a37a92e50ea46dc5f4.zip
Fix traceback when displaying required media.
Diffstat (limited to 'image.py')
-rw-r--r--image.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/image.py b/image.py
index dccab663d..b2c1c3f37 100644
--- a/image.py
+++ b/image.py
@@ -206,7 +206,7 @@ def presentRequiredMediaMessage(anaconda):
return
# check what discs our currently mounted one provides
- if os.access("/.discinfo" % anaconda.backend.ayum.tree, os.R_OK):
+ if os.access("%s/.discinfo" % anaconda.backend.ayum.tree, os.R_OK):
discNums = []
try:
f = open("%s/.discinfo", anaconda.backend.ayum.tree)