summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMichal Toman <mtoman@redhat.com>2011-03-30 10:56:11 +0200
committerMichal Toman <mtoman@redhat.com>2011-03-30 10:56:11 +0200
commite984b5b9a22b21dad111b5b2af4fb722c5b1980c (patch)
treee2e357f3c1d11272c9d6d782fa2058f10fe063bd /src
parentd6783b83ecce7a8b63cad69216f178d02b774546 (diff)
downloadabrt-e984b5b9a22b21dad111b5b2af4fb722c5b1980c.tar.gz
abrt-e984b5b9a22b21dad111b5b2af4fb722c5b1980c.tar.xz
abrt-e984b5b9a22b21dad111b5b2af4fb722c5b1980c.zip
retrace server: fix malformed error message
Diffstat (limited to 'src')
-rwxr-xr-xsrc/retrace/worker.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/retrace/worker.py b/src/retrace/worker.py
index 5102315e..b8548382 100755
--- a/src/retrace/worker.py
+++ b/src/retrace/worker.py
@@ -97,7 +97,7 @@ if __name__ == "__main__":
break
if not version or not distribution:
- raise Exception, "Release '%s' is not supported.\n"
+ raise Exception, "Release '%s' is not supported.\n" % release
except Exception as ex:
LOG.write("Unable to read distribution and version from 'release' file: %s.\n" % ex)