diff options
author | David Lehman <dlehman@redhat.com> | 2009-02-27 10:18:46 -0600 |
---|---|---|
committer | David Lehman <dlehman@redhat.com> | 2009-02-27 10:18:46 -0600 |
commit | 77e052201c1aa258def5fdde5c9b8745b79611f2 (patch) | |
tree | ebcdf7465fc944b97bd0b008a82cef0cb1d998ba /textw/upgrade_text.py | |
parent | addec40bb65f80a7f38166c5c87561d362b31fc9 (diff) | |
download | anaconda-77e052201c1aa258def5fdde5c9b8745b79611f2.tar.gz anaconda-77e052201c1aa258def5fdde5c9b8745b79611f2.tar.xz anaconda-77e052201c1aa258def5fdde5c9b8745b79611f2.zip |
Lots of minor fixes and cleanups. A non-exhaustive list follows.
- Change minsize/maxsize to minSize/maxSize since that's the
convention elsewhere throughout the code.
- Redirect output from all external utilities to tty5, not
/dev/null.
- Don't waste calls to basename for debug log statements,
especially when the device can be None.
- Add lots of missing imports.
- Fix lots of remnants of previous code usage.
Diffstat (limited to 'textw/upgrade_text.py')
-rw-r--r-- | textw/upgrade_text.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/textw/upgrade_text.py b/textw/upgrade_text.py index 65cbaeb38..54c36edcb 100644 --- a/textw/upgrade_text.py +++ b/textw/upgrade_text.py @@ -190,7 +190,7 @@ class UpgradeSwapWindow: else: screen.popWindow() if flags.setupFilesystems: - upgrade.createSwapFile(anaconda.rootPath, dev, val) + anaconda.id.storage.fsset.createSwapFile(anaconda.rootPath, dev, val) anaconda.dispatch.skipStep("addswap", 1) return INSTALL_OK |