diff options
author | Jeremy Katz <katzj@redhat.com> | 2006-10-04 20:43:08 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2006-10-04 20:43:08 +0000 |
commit | 26b2750b5965ff32398243fa7e82b4494f663848 (patch) | |
tree | 8ed1e1aa825312ba3000065c60ebce3e7aba603d /yuminstall.py | |
parent | bdb8ea06db8d5bcc09e68691a84ea4f61c4bde38 (diff) | |
download | anaconda-26b2750b5965ff32398243fa7e82b4494f663848.tar.gz anaconda-26b2750b5965ff32398243fa7e82b4494f663848.tar.xz anaconda-26b2750b5965ff32398243fa7e82b4494f663848.zip |
2006-10-04 Jeremy Katz <katzj@redhat.com>
* yuminstall.py (YumBackend.checkSupportedUpgrade): Fix traceback
going back (#205198)
Diffstat (limited to 'yuminstall.py')
-rw-r--r-- | yuminstall.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/yuminstall.py b/yuminstall.py index 9b50fac96..bbc6caded 100644 --- a/yuminstall.py +++ b/yuminstall.py @@ -1124,6 +1124,9 @@ class YumBackend(AnacondaBackend): f.close() def checkSupportedUpgrade(self, anaconda): + if anaconda.dir == DISPATCH_BACK: + return + # Figure out current version for upgrade nag and for determining weird # upgrade cases supportedUpgradeVersion = -1 |