summaryrefslogtreecommitdiffstats
path: root/isys
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2000-12-04 17:02:21 +0000
committerMike Fulbright <msf@redhat.com>2000-12-04 17:02:21 +0000
commitde7198540f60dcb1fd990fe48615f692cd7957ae (patch)
tree37c9aab402311ae253b453da6adedb539cb25548 /isys
parentd68fdd3aa1a22f43d3820cec13406d73c8cf9d50 (diff)
downloadanaconda-de7198540f60dcb1fd990fe48615f692cd7957ae.tar.gz
anaconda-de7198540f60dcb1fd990fe48615f692cd7957ae.tar.xz
anaconda-de7198540f60dcb1fd990fe48615f692cd7957ae.zip
fix for bug 19523
Diffstat (limited to 'isys')
-rw-r--r--isys/isys.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/isys/isys.py b/isys/isys.py
index 1968a5824..521ec0b70 100644
--- a/isys/isys.py
+++ b/isys/isys.py
@@ -113,7 +113,7 @@ def umount(what, removeDir = 1):
raise ValueError, "isys.umount() can only umount by mount point"
if mountCount.has_key(what) and mountCount[what] > 1:
- mountCount[what] = mountCount - 1
+ mountCount[what] = mountCount[what] - 1
return
rc = _isys.umount(what)