summaryrefslogtreecommitdiffstats
path: root/exception.py
diff options
context:
space:
mode:
Diffstat (limited to 'exception.py')
-rw-r--r--exception.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/exception.py b/exception.py
index ab1b3bbb6..6d84c5154 100644
--- a/exception.py
+++ b/exception.py
@@ -363,7 +363,7 @@ def saveToBugzilla(anaconda, exn, dest):
except CommunicationError, e:
msg = _("Your bug could not be filed due to the following error "
"when communicating with bugzilla:\n\n%s" % str(e))
- except ValueError, e:
+ except (TypeError, ValueError), e:
msg = _("Your bug could not be filed due to bad information in "
"the bug fields. This is most likely an error in "
"anaconda:\n\n%s" % str(e))