aboutsummaryrefslogtreecommitdiff
path: root/scan4dups.py
diff options
context:
space:
mode:
authorMark Shoulson <mark@kli.org>2012-01-02 14:02:25 -0500
committerMark Shoulson <mark@kli.org>2012-01-02 14:02:25 -0500
commit683cd7412ffc10456573e9912de36ba46777b743 (patch)
treec45c9ca0f63002fe31956b4d4b5aa9abf6861aa7 /scan4dups.py
parentWe had an extra char all along with DEGREE SIGN. Made checklines read stdin. (diff)
downloaddotXCompose-683cd7412ffc10456573e9912de36ba46777b743.tar.gz
dotXCompose-683cd7412ffc10456573e9912de36ba46777b743.tar.bz2
dotXCompose-683cd7412ffc10456573e9912de36ba46777b743.zip
LATIN PHI, a-w for OPEN O, other IPA, converging lines...
Diffstat (limited to 'scan4dups.py')
-rw-r--r--scan4dups.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scan4dups.py b/scan4dups.py
index a1a723e..9ce6193 100644
--- a/scan4dups.py
+++ b/scan4dups.py
@@ -33,8 +33,8 @@ try:
if val != listing[name]:
print "Exact conflict found: (%s )[%s][%s]"%(name,
listing[name], val)
- else:
- print "Redundant definition: (%s )[%s]"%(name, val)
+ else: # It's easier to read if lines have different indentations
+ print "\tRedundant definition: (%s )[%s]"%(name, val)
else:
listing[name]=val
except StopIteration: