X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/blobdiff_plain/6f6d039f0cfb7470d11f77cacb8612b1b4ed40d1..e4fc1f59f679b4f0b5c6805feaf9da0df2cd370f:/stgit/git.py diff --git a/stgit/git.py b/stgit/git.py index 20cac61..0e83ffc 100644 --- a/stgit/git.py +++ b/stgit/git.py @@ -186,8 +186,9 @@ def __tree_status(files = None, tree_id = 'HEAD', unknown = False, """Returns a list of pairs - [status, filename] """ if verbose: - print 'Checking for changes in the working directory...', - sys.stdout.flush() + print >> sys.stderr, \ + 'Checking for changes in the working directory...', + sys.stderr.flush() refresh_index() @@ -226,7 +227,7 @@ def __tree_status(files = None, tree_id = 'HEAD', unknown = False, cache_files.append(fs) if verbose: - print 'done' + print >> sys.stderr, 'done' return cache_files