Browse Source

Fix embarassing little typo, hee hee =)

rdb 16 years ago
parent
commit
26bc853d92
1 changed files with 1 additions and 1 deletions
  1. 1 1
      makepanda/makepandacore.py

+ 1 - 1
makepanda/makepandacore.py

@@ -533,7 +533,7 @@ def ConditionalWriteFile(dest,desiredcontents):
         WriteFile(dest,desiredcontents)
 
 def DeleteCVS(dir):
-    if dir == ".": dir = "."
+    if dir == "": dir = "."
     for entry in os.listdir(dir):
         if (entry != ".") and (entry != ".."):
             subdir = dir + "/" + entry