From: Tomi Ollila Date: Wed, 11 Jul 2012 09:10:04 +0000 (+0300) Subject: contrib/nmbug/ nmbug-status: restored out['subject']... block level X-Git-Tag: 0.14~68 X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=620092001e58cb092634a0063758f3e4c05c75fa;p=obsolete%2Fnotmuch-old 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. --- 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'])