Skip to content
This repository was archived by the owner on May 17, 2019. It is now read-only.

Commit bbe076e

Browse files
authored
future proof
1 parent d77378f commit bbe076e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

native_package_install.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#! /usr/bin/env python
22

3+
from __future__ import print_function
4+
35
import collections
46
import argparse
57
import json
@@ -85,7 +87,7 @@ def fetch_packages(vendor_dir, packages):
8587
vendor = format_vendor_dir(vendor_dir, package['namespace'])
8688
url = format_url(package)
8789

88-
print "Downloading {namespace}/{name} {version}".format(**package)
90+
print("Downloading {namespace}/{name} {version}".format(**package))
8991
tar_file = urllib2.urlopen(url)
9092
with open(tar_filename, 'w') as tar:
9193
tar.write(tar_file.read())

0 commit comments

Comments
 (0)