diff options
Diffstat (limited to 'RepSys/mirror.py')
-rwxr-xr-x[-rw-r--r--] | RepSys/mirror.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/RepSys/mirror.py b/RepSys/mirror.py index f0d2316..94720cc 100644..100755 --- a/RepSys/mirror.py +++ b/RepSys/mirror.py @@ -66,9 +66,12 @@ def using_on(url): using = False return using -def info(url, stream=sys.stderr): +def info(url, write=False, stream=sys.stderr): if using_on(url): - stream.write("using mirror\n") + stream.write("Using the svn mirror.\n") + if write: + stream.write("To be able to commit changes, use " + "'repsys switch' first.\n") def mirror_relocate(oldparent, newparent, url, wcpath): svn = SVN() |