aboutsummaryrefslogtreecommitdiff
path: root/scan4dups.py
diff options
context:
space:
mode:
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: