DrTrigon has submitted this change and it was merged.
Change subject: .pep8: ignore E122 "continuation line missing ..." ......................................................................
.pep8: ignore E122 "continuation line missing ..."
E122 continuation line missing indentation or outdented disallows the following:
pywikibot.output( u"...some long text that really doesn't fit on the same line" )
because the text is outdented compared to the original function call.
Change-Id: I1457f2d3e8cbeacd9bee9fa10fa7924e8dfb949a --- M .pep8 1 file changed, 1 insertion(+), 0 deletions(-)
Approvals: DrTrigon: Checked; Looks good to me, approved
diff --git a/.pep8 b/.pep8 index 4827278..e52a001 100644 --- a/.pep8 +++ b/.pep8 @@ -1,3 +1,4 @@ [pep8] +ignore = E122 exclude = distribute_setup.py,externals,user-config.py,./scripts/i18n/*,./pywikibot/date.py max_line_length = 256
pywikibot-commits@lists.wikimedia.org