diff options
Diffstat (limited to 'exception.py')
-rw-r--r-- | exception.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exception.py b/exception.py index 3bb8781bc..7b0964689 100644 --- a/exception.py +++ b/exception.py @@ -243,7 +243,7 @@ class AnacondaExceptionDump: for (file, lineno, func, text) in [f[1:5] for f in self.stack]: if type(text) == type([]): text = "".join(text) - s += "%s %s %s\n" % (file, func, text) + s += "%s %s %s\n" % (os.path.basename(file), func, text) return hashlib.sha256(s).hexdigest() |