From e029c9f7f8765b895ef2893cdf7fabe6dc5e9806 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sat, 18 Feb 2006 20:08:20 +0000 Subject: [PATCH] Added usage to unit-test OptionParser git-svn-id: http://code.djangoproject.com/svn/django/trunk@2336 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/runtests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/runtests.py b/tests/runtests.py index 969aabf617..9226361090 100755 --- a/tests/runtests.py +++ b/tests/runtests.py @@ -206,7 +206,7 @@ class TestRunner: if __name__ == "__main__": from optparse import OptionParser usage = "%prog [options] [model model model ...]" - parser = OptionParser() + parser = OptionParser(usage=usage) parser.add_option('-v', help='How verbose should the output be? Choices are 0, 1 and 2, where 2 is most verbose. Default is 0.', type='choice', choices=['0', '1', '2']) parser.add_option('--settings',