summaryrefslogtreecommitdiff
path: root/subcmds/version.py
diff options
context:
space:
mode:
Diffstat (limited to 'subcmds/version.py')
-rw-r--r--subcmds/version.py13
1 files changed, 7 insertions, 6 deletions
diff --git a/subcmds/version.py b/subcmds/version.py
index 243e36760..01b7fd8c7 100644
--- a/subcmds/version.py
+++ b/subcmds/version.py
@@ -13,6 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
+from __future__ import print_function
import sys
from command import Command, MirrorSafeCommand
from git_command import git
@@ -32,12 +33,12 @@ class Version(Command, MirrorSafeCommand):
rp = self.manifest.repoProject
rem = rp.GetRemote(rp.remote.name)
- print 'repo version %s' % rp.work_git.describe(HEAD)
- print ' (from %s)' % rem.url
+ print('repo version %s' % rp.work_git.describe(HEAD))
+ print(' (from %s)' % rem.url)
if Version.wrapper_path is not None:
- print 'repo launcher version %s' % Version.wrapper_version
- print ' (from %s)' % Version.wrapper_path
+ print('repo launcher version %s' % Version.wrapper_version)
+ print(' (from %s)' % Version.wrapper_path)
- print git.version().strip()
- print 'Python %s' % sys.version
+ print(git.version().strip())
+ print('Python %s' % sys.version)