diff options
author | Hans de Goede <hdegoede@redhat.com> | 2010-01-14 10:59:19 +0100 |
---|---|---|
committer | Hans de Goede <hdegoede@redhat.com> | 2010-01-14 10:59:19 +0100 |
commit | eec3ab2d3c0d19f73cc7fca3113f128d36279171 (patch) | |
tree | 78787624481a4d8ba1147236c392094e3a7e960a /textw/upgrade_text.py | |
parent | df71485041f40c5a2833900d6fae2bddefa52dd1 (diff) | |
download | anaconda-eec3ab2d3c0d19f73cc7fca3113f128d36279171.tar.gz anaconda-eec3ab2d3c0d19f73cc7fca3113f128d36279171.tar.xz anaconda-eec3ab2d3c0d19f73cc7fca3113f128d36279171.zip |
pylint error fixes round 2
- Remove unnecessary semi colons in various places
- textw/upgrade_text.py: add a few missing imports
- Fix various missplaced doc strings
- Fix several double imports
- Fix AnacondaKSScript.run: Module 'os' has no 'exists' member
- users.py: Remove double definition of Users.setRootPassword
- yuminstall.py: correct typo reop -> repo
- yuminstall.py: _run: anaconda -> self.anaconda
Diffstat (limited to 'textw/upgrade_text.py')
-rw-r--r-- | textw/upgrade_text.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/textw/upgrade_text.py b/textw/upgrade_text.py index f944c72b2..4de534e88 100644 --- a/textw/upgrade_text.py +++ b/textw/upgrade_text.py @@ -24,10 +24,14 @@ from constants_text import * from snack import * from flags import flags from constants import * +from storage.formats import getFormat import gettext _ = lambda x: gettext.ldgettext("anaconda", x) +import logging +log = logging.getLogger("anaconda") + class UpgradeMigrateFSWindow: def __call__ (self, screen, anaconda): |