From 1dacc67068741861af3eb41f7de94d9c90edc70a Mon Sep 17 00:00:00 2001 From: Jeremy Katz Date: Fri, 1 Feb 2002 21:50:25 +0000 Subject: typo fix --- iutil.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'iutil.py') 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? -- cgit