# HG changeset patch # User Mads Kiilerich # Date 2019-08-04 01:23:57 # Node ID d8efd9270441af2ea8db8e1d58bb72b37cf8cbb1 # Parent d3d689ef43060a83a89446609390cbf8cc644f9b flake8: fix E111 indentation is not a multiple of four diff --git a/kallithea/model/pull_request.py b/kallithea/model/pull_request.py --- a/kallithea/model/pull_request.py +++ b/kallithea/model/pull_request.py @@ -358,8 +358,8 @@ class CreatePullRequestIterationAction(o 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()