Fix multi-arg list.append() calls.
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 @@
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 @@
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