aboutsummaryrefslogtreecommitdiffstats
path: root/googlemock/scripts
diff options
context:
space:
mode:
authorSyl <srouquette@gmail.com>2015-08-30 08:57:48 +0200
committerSyl <srouquette@gmail.com>2015-08-30 09:06:14 +0200
commitac830d6b197f8b8dad24782d7900c69cee0ab77e (patch)
treeb5f402ebee1018deaed11b1847d93bfd27ed80f9 /googlemock/scripts
parentd945d8c000a0ade73585d143532266968339bbb3 (diff)
downloadgoogletest-ac830d6b197f8b8dad24782d7900c69cee0ab77e.tar.gz
googletest-ac830d6b197f8b8dad24782d7900c69cee0ab77e.tar.bz2
googletest-ac830d6b197f8b8dad24782d7900c69cee0ab77e.zip
Fix gmock_doctor.py for Python3
Diffstat (limited to 'googlemock/scripts')
-rwxr-xr-xgooglemock/scripts/gmock_doctor.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/googlemock/scripts/gmock_doctor.py b/googlemock/scripts/gmock_doctor.py
index 9ac46535..74992bc7 100755
--- a/googlemock/scripts/gmock_doctor.py
+++ b/googlemock/scripts/gmock_doctor.py
@@ -599,7 +599,7 @@ def main():
print ('Please copy and paste the compiler errors here. Press c-D when '
'you are done:')
else:
- print 'Waiting for compiler errors on stdin . . .'
+ print ('Waiting for compiler errors on stdin . . .')
msg = sys.stdin.read().strip()
diagnoses = Diagnose(msg)
@@ -617,18 +617,18 @@ If you send your source code and the compiler's error messages to
%s, you can be helped and I can get smarter --
win-win for us!""" % (msg, _EMAIL))
else:
- print '------------------------------------------------------------'
- print 'Your code appears to have the following',
+ print ('------------------------------------------------------------')
+ print ('Your code appears to have the following',)
if count > 1:
- print '%s diseases:' % (count,)
+ print ('%s diseases:' % (count,))
else:
- print 'disease:'
+ print ('disease:')
i = 0
for d in diagnoses:
i += 1
if count > 1:
- print '\n#%s:' % (i,)
- print d
+ print ('\n#%s:' % (i,))
+ print (d)
print ("""
How did I do? If you think I'm wrong or unhelpful, please send your
source code and the compiler's error messages to %s.