summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorSteven Myint <git@stevenmyint.com>2013-10-04 10:37:11 -0700
committerSteven Myint <git@stevenmyint.com>2013-10-04 10:37:11 -0700
commit9e8da213f4883b146ac44cdc244393e215e36664 (patch)
treeb0bbfc6d87054dcad162b8ae274134356b6ccbe5 /examples
parent178adc68ec0e15fd05cfd2441ee925319028b50f (diff)
downloadpexpect-git-9e8da213f4883b146ac44cdc244393e215e36664.tar.gz
Use print function
Diffstat (limited to 'examples')
-rwxr-xr-xexamples/fix_cvs_files.py15
1 files changed, 9 insertions, 6 deletions
diff --git a/examples/fix_cvs_files.py b/examples/fix_cvs_files.py
index 7884b29..23ba89b 100755
--- a/examples/fix_cvs_files.py
+++ b/examples/fix_cvs_files.py
@@ -35,6 +35,9 @@ PEXPECT LICENSE
'''
+from __future__ import absolute_import
+from __future__ import print_function
+
import os, sys, time
import pexpect
@@ -63,16 +66,16 @@ def is_kb_sticky (filename):
s = pexpect.spawn ('cvs status %s' % filename)
i = s.expect (['Sticky Options:\s*(.*)\r\n', 'Status: Unknown'])
if i==1 and VERBOSE:
- print 'File not part of CVS repository:', filename
+ print('File not part of CVS repository:', filename)
return 1 # Pretend it's OK.
if s.match.group(1) == '-kb':
return 1
s = None
except:
- print 'Something went wrong trying to run external cvs command.'
- print ' cvs status %s' % filename
- print 'The cvs command returned:'
- print s.before
+ print('Something went wrong trying to run external cvs command.')
+ print(' cvs status %s' % filename)
+ print('The cvs command returned:')
+ print(s.before)
return 0
def cvs_admin_kb (filename):
@@ -97,7 +100,7 @@ def walk_and_clean_cvs_binaries (arg, dirname, names):
continue
if is_binary(fullpath):
if not is_kb_sticky (fullpath):
- if VERBOSE: print fullpath
+ if VERBOSE: print(fullpath)
cvs_admin_kb (fullpath)
def main ():