diff options
author | Chris Lumens <clumens@redhat.com> | 2006-05-25 14:15:50 +0000 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2006-05-25 14:15:50 +0000 |
commit | 49a936cc890a75b73930c8ecc32323098305794b (patch) | |
tree | 117a83a89aa076735d60644bfcf20b6313e0ff33 /installmethod.py | |
parent | cb1d032be5d2ab13a14add12a525b12cce36f50e (diff) | |
download | anaconda-49a936cc890a75b73930c8ecc32323098305794b.tar.gz anaconda-49a936cc890a75b73930c8ecc32323098305794b.tar.xz anaconda-49a936cc890a75b73930c8ecc32323098305794b.zip |
Consolidate file fetching error handling into one set of urlgrabber error
callbacks. Allow retrying when the error dialog is displayed (#183974).
Diffstat (limited to 'installmethod.py')
-rw-r--r-- | installmethod.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/installmethod.py b/installmethod.py index eb613401e..a1fd095e3 100644 --- a/installmethod.py +++ b/installmethod.py @@ -76,6 +76,9 @@ class InstallMethod: def ejectCD(self): pass + def badPackageError(self, pkgname): + pass + # this handles any cleanup needed for the method. it occurs *very* late # (ie immediately before the congratulations screen). main use right now |