From: Guido van Rossum Date: Mon, 18 Aug 1997 20:56:10 +0000 (+0000) Subject: Use correct keyword parameter when calling copy with answer option! X-Git-Tag: v1.5a4~371 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=92dfa4ffe1474083d2194a25aeab23d96048f127;p=thirdparty%2FPython%2Fcpython.git Use correct keyword parameter when calling copy with answer option! --- diff --git a/Tools/scripts/treesync.py b/Tools/scripts/treesync.py index 1cad0e5b08c6..f0393858df3f 100755 --- a/Tools/scripts/treesync.py +++ b/Tools/scripts/treesync.py @@ -143,10 +143,10 @@ def compare(slave, master): sf.close() if fun: print "***UPDATING MASTER (BINARY COPY)***" - copy(slave, master, "rb", write_master) + copy(slave, master, "rb", answer=write_master) else: print "***UPDATING MASTER***" - copy(slave, master, "r", write_master) + copy(slave, master, "r", answer=write_master) BUFSIZE = 16*1024