summaryrefslogtreecommitdiffstats
path: root/Demo/stdwin/wdiff.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1998-10-08 15:24:48 (GMT)
committerGuido van Rossum <guido@python.org>1998-10-08 15:24:48 (GMT)
commit9c2c1e88a352c947eac2c9eb8b91908f1b5abaad (patch)
tree1409948b07587c6bdecd570b5e41e2eb36d86da1 /Demo/stdwin/wdiff.py
parent215193bd93f898b21ed75befd412095d99dee601 (diff)
downloadcpython-9c2c1e88a352c947eac2c9eb8b91908f1b5abaad.zip
cpython-9c2c1e88a352c947eac2c9eb8b91908f1b5abaad.tar.gz
cpython-9c2c1e88a352c947eac2c9eb8b91908f1b5abaad.tar.bz2
Fix multi-arg list.append() calls.
Diffstat (limited to 'Demo/stdwin/wdiff.py')
-rwxr-xr-xDemo/stdwin/wdiff.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/Demo/stdwin/wdiff.py b/Demo/stdwin/wdiff.py
index b8c8da3..50ca032 100755
--- a/Demo/stdwin/wdiff.py
+++ b/Demo/stdwin/wdiff.py
@@ -95,7 +95,7 @@ def diffdata(a, b, flags): # Compute directory differences.
if x in ['./', '../']:
pass
elif x not in b_list:
- a_only.append(x, a_only_action)
+ a_only.append((x, a_only_action))
else:
ax = os.path.join(a, x)
bx = os.path.join(b, x)
@@ -110,15 +110,15 @@ def diffdata(a, b, flags): # Compute directory differences.
except (RuntimeError, os.error):
same = 0
if same:
- ab_same.append(x, ab_same_action)
+ ab_same.append((x, ab_same_action))
else:
- ab_diff.append(x, ab_diff_action)
+ ab_diff.append((x, ab_diff_action))
#
for x in b_list:
if x in ['./', '../']:
pass
elif x not in a_list:
- b_only.append(x, b_only_action)
+ b_only.append((x, b_only_action))
#
return data