diff options
| author | Chris Lumens <clumens@redhat.com> | 2012-05-04 14:06:49 -0400 |
|---|---|---|
| committer | Chris Lumens <clumens@redhat.com> | 2012-05-04 14:06:49 -0400 |
| commit | 170eb61b56b1df4a92ad1ff3cf4b7d95e5509bbd (patch) | |
| tree | 2c96b53a30f4cb58c6664cf6978b56a1189ce70d | |
| parent | feb5a9c67e95d1091ec72413f9972a7a0879261d (diff) | |
| download | anaconda-170eb61b56b1df4a92ad1ff3cf4b7d95e5509bbd.tar.gz anaconda-170eb61b56b1df4a92ad1ff3cf4b7d95e5509bbd.tar.xz anaconda-170eb61b56b1df4a92ad1ff3cf4b7d95e5509bbd.zip | |
Fix the obvious typos in errors.py.
| -rw-r--r-- | pyanaconda/errors.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pyanaconda/errors.py b/pyanaconda/errors.py index 5217a63d4..19003f89f 100644 --- a/pyanaconda/errors.py +++ b/pyanaconda/errors.py @@ -172,7 +172,7 @@ class ErrorHandler(object): else: return ERROR_RAISE - def mediaUnmountHandler(self, *args, **kwargs): + def _mediaUnmountHandler(self, *args, **kwargs): device = args[0] message = _("An error occurred unmounting the disc. " "Please make sure you're not accessing " @@ -180,7 +180,7 @@ class ErrorHandler(object): "and then click OK to retry.") % device.path self.ui.showError(message) - def noSuchGroupHandler(self, *args, **kwargs): + def _noSuchGroupHandler(self, *args, **kwargs): group = args[0] message = _("You have specified that the group '%s' should be " "installed. This group does not exist. Would you like " @@ -191,7 +191,7 @@ class ErrorHandler(object): else: return ERROR_RAISE - def noSuchPackageHandler(self, *args, **kwargs): + def _noSuchPackageHandler(self, *args, **kwargs): package = args[0] message = _("You have specified that the package '%s' should be " "installed. This package does not exist. Would you " |
