changeset 7823:d8efd9270441

flake8: fix E111 indentation is not a multiple of four
author Mads Kiilerich <mads@kiilerich.com>
date Sun, 04 Aug 2019 01:23:57 +0200
parents d3d689ef4306
children 548357c4301d
files kallithea/model/pull_request.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/kallithea/model/pull_request.py	Sun Aug 04 01:00:48 2019 +0200
+++ b/kallithea/model/pull_request.py	Sun Aug 04 01:23:57 2019 +0200
@@ -358,8 +358,8 @@
             else:
                 infos.append(_('This iteration is based on another %s revision and there is no simple diff.') % other_ref_name)
         else:
-           infos.append(_('No changes found on %s %s since previous iteration.') % (org_ref_type, org_ref_name))
-           # TODO: fail?
+            infos.append(_('No changes found on %s %s since previous iteration.') % (org_ref_type, org_ref_name))
+            # TODO: fail?
 
         try:
             title, old_v = re.match(r'(.*)\(v(\d+)\)\s*$', title).groups()