From: W. Trevor King Date: Thu, 16 Feb 2012 14:10:16 +0000 (-0500) Subject: Cleanup help strings in bin/update-copyright.py. X-Git-Tag: v0.3~11 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=7d560e340b2837431193cd4a2d23ff228874372b;p=update-copyright.git Cleanup help strings in bin/update-copyright.py. --- diff --git a/bin/update-copyright.py b/bin/update-copyright.py index 9394243..c291939 100755 --- a/bin/update-copyright.py +++ b/bin/update-copyright.py @@ -28,8 +28,8 @@ Replaces every line starting with ``^# Copyright`` and continuing with line between the blurb and your comment, so the next run of ``update_copyright.py`` doesn't clobber your comment. -If no files are given, a list of files to update is generated -automatically. +You should configure this program via an ``.update-copyright.conf`` +file in your project root. """ import logging as _logging @@ -42,7 +42,7 @@ if __name__ == '__main__': import optparse import sys - usage = "%%prog [options] [file ...]" + usage = "%prog [options] [file ...]" p = optparse.OptionParser(usage=usage, description=__doc__) p.add_option('--config', dest='config', default='.update-copyright.conf',