diff --git a/qubesmanager/main.py b/qubesmanager/main.py
index 98441f1..5d1d262 100755
--- a/qubesmanager/main.py
+++ b/qubesmanager/main.py
@@ -1985,13 +1985,9 @@ def handle_exception(exc_type, exc_value, exc_traceback):
filename, line, dummy, dummy = traceback.extract_tb(exc_traceback).pop()
filename = os.path.basename(filename)
- error = "%s: %s" % (exc_type.__name__, exc_value)
message = (
- "Whoops. A critical error has occured. This is most likely a bug "
- "in Qubes Manager.
"
- "%s" % error +
- "
at line %d
of file %s.
"
- % (line, filename)
+ "%s" % exc_value +
+ "
This is most likely a bug in the Qubes Manager"
)
is_gui_thread = threading.currentThread().getName() == "QtMainThread"
strace = ""