summaryrefslogtreecommitdiffstats
path: root/iutil.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-02-01 21:50:25 +0000
committerJeremy Katz <katzj@redhat.com>2002-02-01 21:50:25 +0000
commit1dacc67068741861af3eb41f7de94d9c90edc70a (patch)
tree3afd1858eebb72a283979e8620fa80da1220b41a /iutil.py
parent245ee02e9424ebeacd81bf6df58203f33d449cd4 (diff)
downloadanaconda-1dacc67068741861af3eb41f7de94d9c90edc70a.tar.gz
anaconda-1dacc67068741861af3eb41f7de94d9c90edc70a.tar.xz
anaconda-1dacc67068741861af3eb41f7de94d9c90edc70a.zip
typo fix
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 c0fb179b4..17c36c988 100644
--- a/iutil.py
+++ b/iutil.py
@@ -389,7 +389,7 @@ def copyDeviceNode(src, dest):
mode = filestat[stat.ST_MODE]
if stat.S_ISBLK(mode):
type = stat.S_IFBLK
- elif stat.ISCHR(mode):
+ elif stat.S_ISCHR(mode):
type = stat.S_IFCHR
else:
# XXX should we just fallback to copying normally?