summaryrefslogtreecommitdiffstats
path: root/pyanaconda/errors.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2012-08-30 15:33:44 -0400
committerChris Lumens <clumens@redhat.com>2012-08-30 17:14:04 -0400
commit3ca0ae5e15547cc68ade99520997074fcfd3773d (patch)
treee40f50a9f18e24f257390f5be9a971511691009a /pyanaconda/errors.py
parent56405f445a528aad3c2d4a499dcb7f328083c39d (diff)
downloadanaconda-3ca0ae5e15547cc68ade99520997074fcfd3773d.tar.gz
anaconda-3ca0ae5e15547cc68ade99520997074fcfd3773d.tar.xz
anaconda-3ca0ae5e15547cc68ade99520997074fcfd3773d.zip
And then fix an assortment of non-packaging pylint errors, too.
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 37ee4d01a..ae1c577c7 100644
--- a/pyanaconda/errors.py
+++ b/pyanaconda/errors.py
@@ -133,7 +133,7 @@ class ErrorHandler(object):
devs = kwargs.pop("devices")
message = _("The following file systems for your Linux system were "
"not unmounted cleanly. Would you like to mount them "
- "anyway?\n%s") % "\n".join(devices)
+ "anyway?\n%s") % "\n".join(devs)
if self.ui.showYesNoQuestion(message):
return ERROR_CONTINUE
else: