summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJavier Jardón <jjardon@gnome.org>2015-03-16 12:44:19 +0000
committerGerrit Code Review <gerrit@baserock.org>2015-03-16 12:44:19 +0000
commit2cdf37e721175e6f59a10971ee49cdd66f4e3419 (patch)
tree7fd314a1128c996d444b8a7e79fb3f10e5b321e4
parent2836313cc2086bac0b0dde1a20e284ece6849e91 (diff)
parentfe1a92080ecdde3d1375ed24878849f3d14292d0 (diff)
downloadmorph-2cdf37e721175e6f59a10971ee49cdd66f4e3419.tar.gz
Merge "print: use function instead the statement one"
-rw-r--r--morphlib/plugins/list_artifacts_plugin.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/morphlib/plugins/list_artifacts_plugin.py b/morphlib/plugins/list_artifacts_plugin.py
index 53056bad..f8a9bda2 100644
--- a/morphlib/plugins/list_artifacts_plugin.py
+++ b/morphlib/plugins/list_artifacts_plugin.py
@@ -17,6 +17,7 @@
#
# See: <http://wiki.baserock.org/guides/release-process> for more information.
+from __future__ import print_function
import cliapp
import morphlib
@@ -68,7 +69,7 @@ class ListArtifactsPlugin(cliapp.Plugin):
artifact_files.update(system_artifact_files)
for artifact_file in sorted(artifact_files):
- print artifact_file
+ print(artifact_file)
def list_artifacts_for_system(self, repo, ref, system_filename):
'''List all artifact files in the build graph of a single system.'''