From 620092001e58cb092634a0063758f3e4c05c75fa Mon Sep 17 00:00:00 2001 From: Tomi Ollila Date: Wed, 11 Jul 2012 12:10:04 +0300 Subject: [PATCH] contrib/nmbug/ nmbug-status: restored out['subject']... block level In reformatting the line 111 accidentally indented to one indentation level too much (happens easily when interactively indenting python code using emacs). The line now has 4 spacess less indentation, thus restoring it to the block level it belongs. --- contrib/nmbug/nmbug-status | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/contrib/nmbug/nmbug-status b/contrib/nmbug/nmbug-status index 6aa86a05..8c6377e5 100755 --- a/contrib/nmbug/nmbug-status +++ b/contrib/nmbug/nmbug-status @@ -108,8 +108,9 @@ def print_view(title, query, comment): br = '
' else: br = '' - out['subject'] = '%s' \ - % (urllib.quote(mid), out['subject']) + + out['subject'] = '%s' \ + % (urllib.quote(mid), out['subject']) print " %s %s" % (br, out['date']) print "%s %s" % (br, out['id']) -- 2.43.0