From 008a037a3611734c2ba43c9aa0fe413bf5a2fa42 Mon Sep 17 00:00:00 2001 From: Maria Malyarova Date: Thu, 7 Jul 2016 20:13:03 +0300 Subject: [PATCH] Another amendment with missing parenthesis TrivialFix Change-Id: Id44ae27bc39ea97be9eb092f8a99a06056b86392 --- bin/swift-reconciler-enqueue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/swift-reconciler-enqueue b/bin/swift-reconciler-enqueue index d707571d2e..2a9dcc3a55 100755 --- a/bin/swift-reconciler-enqueue +++ b/bin/swift-reconciler-enqueue @@ -11,6 +11,7 @@ # implied. # See the License for the specific language governing permissions and # limitations under the License. +from __future__ import print_function import sys from optparse import OptionParser @@ -67,7 +68,7 @@ def main(): policy.idx, timestamp, options.op, force=options.force) if not container_name: return 'ERROR: unable to enqueue!' - print container_name + print(container_name) if __name__ == "__main__":