summaryrefslogtreecommitdiffstats
path: root/image.py
diff options
context:
space:
mode:
authorHans de Goede <hdegoede@redhat.com>2010-01-14 10:59:19 +0100
committerHans de Goede <hdegoede@redhat.com>2010-01-14 10:59:19 +0100
commiteec3ab2d3c0d19f73cc7fca3113f128d36279171 (patch)
tree78787624481a4d8ba1147236c392094e3a7e960a /image.py
parentdf71485041f40c5a2833900d6fae2bddefa52dd1 (diff)
downloadanaconda-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 'image.py')
-rw-r--r--image.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/image.py b/image.py
index 8ae097077..e15de12b2 100644
--- a/image.py
+++ b/image.py
@@ -179,7 +179,7 @@ def mountImage(isodir, tree, discnum, messageWindow, discImages={}):
try:
isoImage = "%s/%s" % (isodir, discImages[discnum])
isys.losetup("/dev/loop1", isoImage, readOnly = 1)
- isys.mount("/dev/loop1", tree, fstype = 'iso9660', readOnly = True);
+ isys.mount("/dev/loop1", tree, fstype = 'iso9660', readOnly = True)
break
except:
ans = messageWindow(_("Missing ISO 9660 Image"),