summaryrefslogtreecommitdiffstats
path: root/iutil.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2003-02-28 22:18:20 +0000
committerJeremy Katz <katzj@redhat.com>2003-02-28 22:18:20 +0000
commitc4cd4294e325c619a9ba8905a5de0b73fc58f28d (patch)
tree657e3c5ed211bfd2de9cd0fa9b38e3cfd3702952 /iutil.py
parent731e59a37f030ef99591c86422269ea4071ac969 (diff)
downloadanaconda-c4cd4294e325c619a9ba8905a5de0b73fc58f28d.tar.gz
anaconda-c4cd4294e325c619a9ba8905a5de0b73fc58f28d.tar.xz
anaconda-c4cd4294e325c619a9ba8905a5de0b73fc58f28d.zip
oops, how did I rmeove this
Diffstat (limited to 'iutil.py')
-rw-r--r--iutil.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/iutil.py b/iutil.py
index be7168ed1..a0358b070 100644
--- a/iutil.py
+++ b/iutil.py
@@ -300,6 +300,7 @@ def rmrf (path):
for file in files:
if (not os.path.islink(path + '/' + file) and
os.path.isdir(path + '/' + file)):
+ rmrf (path + '/' + file)
else:
os.unlink (path + '/' + file)
os.rmdir (path)