From cecd1d864fc3cf02cf50d367111e0d0e173c5dc6 Mon Sep 17 00:00:00 2001 From: Sarah Owens Date: Thu, 1 Nov 2012 22:59:27 -0700 Subject: Change print statements to work in python3 This is part of a series of changes to introduce Python3 support. Change-Id: I373be5de7141aa127d7debdbce1df39148dbec32 --- subcmds/status.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'subcmds/status.py') diff --git a/subcmds/status.py b/subcmds/status.py index 7611621e..40562274 100644 --- a/subcmds/status.py +++ b/subcmds/status.py @@ -129,4 +129,4 @@ the following meanings: output.dump(sys.stdout) output.close() if len(all_projects) == counter.next(): - print 'nothing to commit (working directory clean)' + print('nothing to commit (working directory clean)') -- cgit v1.2.3-54-g00ecf