summaryrefslogtreecommitdiffstats
path: root/iutil.py
diff options
context:
space:
mode:
authorPeter Jones <pjones@redhat.com>2005-03-09 19:03:29 +0000
committerPeter Jones <pjones@redhat.com>2005-03-09 19:03:29 +0000
commitbcb805557d3241cc5e8c26dada2808489cbdee4e (patch)
tree34187cfcbf3228504020c48d73c7c2a34e371cab /iutil.py
parente14283d0aa1cf90589887303a00cdf0c4e021c20 (diff)
downloadanaconda-bcb805557d3241cc5e8c26dada2808489cbdee4e.tar.gz
anaconda-bcb805557d3241cc5e8c26dada2808489cbdee4e.tar.xz
anaconda-bcb805557d3241cc5e8c26dada2808489cbdee4e.zip
fix the typo I just checked in. swapAmount() has been tested since then ;)
Diffstat (limited to 'iutil.py')
-rw-r--r--iutil.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/iutil.py b/iutil.py
index adad48bb5..a88f6adaa 100644
--- a/iutil.py
+++ b/iutil.py
@@ -400,7 +400,7 @@ def swapAmount():
for l in lines:
if l.startswith("SwapTotal:"):
fields = string.split(l)
- return = kBytes(long(fields[1]))
+ return kBytes(long(fields[1]))
return Bytes(0)
def copyDeviceNode(src, dest):