summaryrefslogtreecommitdiffstats
path: root/pyanaconda/iutil.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2011-07-20 16:54:09 -0400
committerChris Lumens <clumens@redhat.com>2011-07-22 11:59:49 -0400
commit8b6d7f89c7e90a33fc7c451f7a4be35d742d8979 (patch)
tree0ec396c8b9e13672e9b4dc0d5df073c639b1b6ae /pyanaconda/iutil.py
parent115b854cc685560190b927b02feda623e326f129 (diff)
downloadanaconda-8b6d7f89c7e90a33fc7c451f7a4be35d742d8979.tar.gz
anaconda-8b6d7f89c7e90a33fc7c451f7a4be35d742d8979.tar.xz
anaconda-8b6d7f89c7e90a33fc7c451f7a4be35d742d8979.zip
Fix a bunch of stupid little errors pylint caught.
Diffstat (limited to 'pyanaconda/iutil.py')
-rw-r--r--pyanaconda/iutil.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyanaconda/iutil.py b/pyanaconda/iutil.py
index a2d76a4ec..e43af8cc1 100644
--- a/pyanaconda/iutil.py
+++ b/pyanaconda/iutil.py
@@ -961,7 +961,7 @@ def fork_orphan():
if os.fork():
# the intermediate child dies
os._exit(0)
- return 0;
+ return 0
# the original process waits for the intermediate child
os.waitpid(intermediate, 0)
return 1