Karl,
A small patch to make the lines in cvs2svn --help look more consistent:
* tools/cvs2svn/cvs2svn.py (usage):
Make the different lines of output from --help consistent in
capitalization, ending in period.
Index: cvs2svn.py
===================================================================
--- cvs2svn.py (revision 6207)
+++ cvs2svn.py (working copy)
@@ -1270,17 +1270,17 @@
def usage(ctx):
print 'USAGE: %s [-n] [-v] [-s svn-repos-path] [-p pass] cvs-repos-path' \
% os.path.basename(sys.argv[0])
- print ' -n dry run. parse CVS repos, but do not construct SVN repos.'
- print ' -v verbose.'
- print ' -s PATH path for SVN repos.'
- print ' -p NUM start at pass NUM of %d.' % len(_passes)
+ print ' -n dry run; parse CVS repos, but do not construct SVN repos'
+ print ' -v verbose'
+ print ' -s PATH path for SVN repos'
+ print ' -p NUM start at pass NUM of %d' % len(_passes)
print ' --create create a new SVN repository'
print ' --dumpfile=PATH name of intermediate svn dumpfile'
print ' --svnadmin=PATH path to the svnadmin program'
print ' --trunk=PATH path for trunk (default: %s)' % ctx.trunk_base
# print ' --branches=PATH path for branches (default: %s)' % ctx.branches_base
# print ' --tags=PATH path for tags (default: %s)' % ctx.tags_base
- print ' --no-prune Don\'t prune empty directories.'
+ print ' --no-prune don\'t prune empty directories'
print ' --encoding=ENC encoding of log messages in CVS repos (default: %s)' % ctx.encoding
sys.exit(1)
I can apply this to trunk or /branches/cvs2svn-kfogel if you want
to save yourself some time.
Best,
Blair
--
Blair Zajac <blair@orcaware.com>
Plots of your system's performance - http://www.orcaware.com/orca/
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Thu Jun 12 19:20:13 2003