summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJavier Jardón <jjardon@gnome.org>2015-03-13 14:24:51 +0000
committerJavier Jardón <jjardon@gnome.org>2015-03-13 14:26:04 +0000
commitfe1a92080ecdde3d1375ed24878849f3d14292d0 (patch)
tree9c3d74b0a86655ff9598c5b9f1bca38b3b8bbbaa
parent0761c88989af492ea2c48b9612cb856d53de3992 (diff)
downloadmorph-fe1a92080ecdde3d1375ed24878849f3d14292d0.tar.gz
print: use function instead the statement one
Change-Id: I7c6f618d5d19e03d906798a6f799d74ac55b0d09
-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.'''