summaryrefslogtreecommitdiffstats
path: root/exception.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2001-11-27 22:40:50 +0000
committerJeremy Katz <katzj@redhat.com>2001-11-27 22:40:50 +0000
commit2917e440afa82045a8f1e3fbfabf642c6b9bb69c (patch)
treefa8ff8e23e7a99a912f5279f460c909c7223d868 /exception.py
parent47913796e33561f31dbd0df3ec90db894cefe2f3 (diff)
downloadanaconda-2917e440afa82045a8f1e3fbfabf642c6b9bb69c.tar.gz
anaconda-2917e440afa82045a8f1e3fbfabf642c6b9bb69c.tar.xz
anaconda-2917e440afa82045a8f1e3fbfabf642c6b9bb69c.zip
remove most of the static instances of /mnt/sysimage (#14632)
Diffstat (limited to 'exception.py')
-rw-r--r--exception.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/exception.py b/exception.py
index 102715d1d..346974bd9 100644
--- a/exception.py
+++ b/exception.py
@@ -142,8 +142,8 @@ def dumpException(out, text, tb, dispatch):
traceback.print_exc(None, out)
for file in ("/tmp/syslog", "/tmp/netinfo",
- "/mnt/sysimage/tmp/install.log",
- "/mnt/sysimage/tmp/upgrade.log"):
+ dispatch.instPath + "/tmp/install.log",
+ dispatch.instPath + "/tmp/upgrade.log"):
try:
f = open(file, 'r')
line = "\n\n%s:\n" % (file,)