summaryrefslogtreecommitdiffstats
path: root/pyanaconda/errors.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2012-10-01 10:12:50 -0400
committerChris Lumens <clumens@redhat.com>2012-10-01 10:12:50 -0400
commit156786629378359b61c899e318fb168083af3009 (patch)
tree09ca7574d9fb128425f8b252aba720cbb7501be7 /pyanaconda/errors.py
parent0e6990442cd2c711428987eff9776d82a34a5dad (diff)
downloadanaconda-156786629378359b61c899e318fb168083af3009.tar.gz
anaconda-156786629378359b61c899e318fb168083af3009.tar.xz
anaconda-156786629378359b61c899e318fb168083af3009.zip
The partitionErrorHandler text needs a 's' in the format string (#861376).
Diffstat (limited to 'pyanaconda/errors.py')
-rw-r--r--pyanaconda/errors.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyanaconda/errors.py b/pyanaconda/errors.py
index 18fc61c33..3b8de0452 100644
--- a/pyanaconda/errors.py
+++ b/pyanaconda/errors.py
@@ -92,7 +92,7 @@ class ErrorHandler(object):
return ERROR_RAISE
def _partitionErrorHandler(self, *args, **kwargs):
- message = _("The following errors occurred with your partitioning:\n\n%(errortxt)\n\n"
+ message = _("The following errors occurred with your partitioning:\n\n%(errortxt)s\n\n"
"The installation will now terminate.") % {"errortxt": str(kwargs["exception"])}
self.ui.showError(message)
return ERROR_RAISE