summaryrefslogtreecommitdiff
path: root/morphlib/plugins
diff options
context:
space:
mode:
authorSam Thursfield <sam.thursfield@codethink.co.uk>2012-09-18 21:14:12 +0100
committerSam Thursfield <sam.thursfield@codethink.co.uk>2012-09-18 21:14:12 +0100
commitdbc7cee2d8c0c307e8805bde876b30f2fac2eb46 (patch)
tree3fda6cec76302fd654facd06f5c1bd183873fd32 /morphlib/plugins
parent3e702b8179e18a8ee206f9977806297906e0e620 (diff)
downloadmorph-dbc7cee2d8c0c307e8805bde876b30f2fac2eb46.tar.gz
morph foreach: Use self.app.output.write(), not print
Diffstat (limited to 'morphlib/plugins')
-rw-r--r--morphlib/plugins/branch_and_merge_plugin.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/morphlib/plugins/branch_and_merge_plugin.py b/morphlib/plugins/branch_and_merge_plugin.py
index 2f60c7bf..e2c7ef84 100644
--- a/morphlib/plugins/branch_and_merge_plugin.py
+++ b/morphlib/plugins/branch_and_merge_plugin.py
@@ -979,8 +979,8 @@ class BranchAndMergePlugin(cliapp.Plugin):
continue
if d != root_repo_path:
- print
- print repo
+ self.app.output.write('\n')
+ self.app.output.write('%s\n' % repo)
try:
output = self.app.runcmd(args, cwd=d)