diff options
author | Matt Wilson <msw@redhat.com> | 2001-03-29 17:31:59 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2001-03-29 17:31:59 +0000 |
commit | 95d26756a780b5b850b6a6219743b6e0b9923545 (patch) | |
tree | be9195ef8f20c2611f5550853b8d897bece04fd1 /upgrade.py | |
parent | 62f903cb8981de8b92c7b2b4aaa338aea990d59b (diff) | |
download | anaconda-95d26756a780b5b850b6a6219743b6e0b9923545.tar.gz anaconda-95d26756a780b5b850b6a6219743b6e0b9923545.tar.xz anaconda-95d26756a780b5b850b6a6219743b6e0b9923545.zip |
don't pass progresswindow in
Diffstat (limited to 'upgrade.py')
-rw-r--r-- | upgrade.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/upgrade.py b/upgrade.py index 226a1576b..5d0889d43 100644 --- a/upgrade.py +++ b/upgrade.py @@ -188,7 +188,7 @@ def createSwapFile(instPath, theFstab, mntPoint, size, progressWindow): file = tmpFile theFstab.addMount(file, size, "swap") - theFstab.turnOnSwap(instPath, progressWindow) + theFstab.turnOnSwap(instPath) f = open(fstabPath, "a") f.write(fstab.fstabFormatString % (prefix + file, "swap", "swap", "defaults", |