summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2018-07-21 20:29:32 +0300
committerLars Wirzenius <liw@liw.fi>2018-07-21 20:29:32 +0300
commit0c028baab112da9c4d89a18850b9d7b516023106 (patch)
treee375f1c04d6c0d30ee4aef137f850a6bea8c1161
parent8955d21dc73c65caa89fa491dbd76c5c02821a46 (diff)
downloadick2-0c028baab112da9c4d89a18850b9d7b516023106.tar.gz
Fix: break long line
-rw-r--r--ick2/actions.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/ick2/actions.py b/ick2/actions.py
index f6fcafc..328b08a 100644
--- a/ick2/actions.py
+++ b/ick2/actions.py
@@ -455,7 +455,9 @@ class GitMirrorAction(Action): # pragma: no cover
env.report(1, 'Caught exception: {}\n'.format(e))
return 1
- env.report(exit_code, 'git mirror action finished (exit code %d)\n' % exit_code)
+ env.report(
+ exit_code,
+ 'git mirror action finished (exit code %d)\n' % exit_code)
return exit_code
def git_mirror(self, env, sources, mirrors):