##// END OF EJS Templates
windows: use win32.unlink in unlinkpath()...
Adrian Buehlmann -
r13777:f6e5035d default
parent child Browse files
Show More
@@ -286,7 +286,7 b' def _removedirs(name):'
286 286
287 287 def unlinkpath(f):
288 288 """unlink and remove the directory if it is empty"""
289 os.unlink(f)
289 unlink(f)
290 290 # try removing directories that might now be empty
291 291 try:
292 292 _removedirs(os.path.dirname(f))
General Comments 0
You need to be logged in to leave comments. Login now