summaryrefslogtreecommitdiffstats
path: root/pyanaconda/errors.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2012-09-17 10:44:04 -0400
committerChris Lumens <clumens@redhat.com>2012-09-17 10:46:42 -0400
commite9f081a0c3571b9a04ce42d5e63ee83e64ee2372 (patch)
tree5f8891c9d6a9d7187a0ce438b515729fa1b5f340 /pyanaconda/errors.py
parentcbe9bfca7a7d40b72cd3c59b6f9a5b56cc36f1eb (diff)
downloadanaconda-e9f081a0c3571b9a04ce42d5e63ee83e64ee2372.tar.gz
anaconda-e9f081a0c3571b9a04ce42d5e63ee83e64ee2372.tar.xz
anaconda-e9f081a0c3571b9a04ce42d5e63ee83e64ee2372.zip
Remove reference to PartitioningWarning, which was removed last week (#875931).
Diffstat (limited to 'pyanaconda/errors.py')
-rw-r--r--pyanaconda/errors.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/pyanaconda/errors.py b/pyanaconda/errors.py
index ae1c577c7..5c2cd27ce 100644
--- a/pyanaconda/errors.py
+++ b/pyanaconda/errors.py
@@ -97,14 +97,6 @@ class ErrorHandler(object):
self.ui.showError(message)
return ERROR_RAISE
- def _partitionWarningHandler(self, *args, **kwargs):
- message = _("The following warnings occurred with your partitioning:\n\n%(errortxt)\n\n"
- "Would you like to continue with the installation anyway?") % {"errortxt": args[0]}
- if self.ui.showYesNoQuestion(message):
- return ERROR_CONTINUE
- else:
- return ERROR_RAISE
-
def _fsResizeHandler(self, *args, **kwargs):
message = _("An error occurred while resizing the device %s.") % args[0]
@@ -245,7 +237,6 @@ class ErrorHandler(object):
_map = {KickstartError: self._kickstartErrorHandler,
StorageError.PartitioningError: self._partitionErrorHandler,
- StorageError.PartitioningWarning: self._partitionWarningHandler,
StorageError.FSResizeError: self._fsResizeHandler,
StorageError.FSMigrateError: self._fsMigrateHandler,
StorageError.NoDisksError: self._noDisksHandler,