Kaydet (Commit) d832f9e4 authored tarafından Guido van Rossum's avatar Guido van Rossum

Fix append() calls with more than 1 argument.

üst bac609a6
......@@ -123,5 +123,5 @@ def _build_cmdtuple(path, cmdtuples):
if os.path.isdir(real_f) and not os.path.islink(real_f):
_build_cmdtuple(real_f, cmdtuples)
else:
cmdtuples.append(os.remove, real_f)
cmdtuples.append(os.rmdir, path)
cmdtuples.append((os.remove, real_f))
cmdtuples.append((os.rmdir, path))
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment