Skip to content

Commit e4014b3

Browse files
committed
Fix incorrect indentation using tabs
It seems like tabs have been mistakenly used instead of spaces in commit b69c5e7632
1 parent 2e85bec commit e4014b3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

roundup/cgi/templating.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -368,9 +368,9 @@ def lookupKeys(linkcl, key, ids, num_re=num_re):
368368
for entry in ids:
369369
if num_re.match(entry):
370370
try:
371-
label = linkcl.get(entry, key)
372-
except IndexError:
373-
# fall back to id if illegal (avoid template crash)
371+
label = linkcl.get(entry, key)
372+
except IndexError:
373+
# fall back to id if illegal (avoid template crash)
374374
label = entry
375375
# fall back to designator if label is None
376376
if label is None: label = '%s%s'%(linkcl.classname, entry)

0 commit comments

Comments
 (0)