Fixed stupid bug in [3802]

git-svn-id: http://code.djangoproject.com/svn/django/trunk@3083 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Jacob Kaplan-Moss 2006-06-05 15:25:12 +00:00
parent 55b6559b0e
commit 42a34423f2
1 changed files with 1 additions and 1 deletions

View File

@ -1152,7 +1152,7 @@ def execute_from_command_line(action_mapping=DEFAULT_ACTION_MAPPING, argv=None):
help='Lets you manually add a directory the Python path, e.g. "/home/djangoprojects/myproject".')
parser.add_option('--plain', action='store_true', dest='plain',
help='Tells Django to use plain Python, not IPython, for "shell" command.')
options, args = parser.parse_args(argv)
options, args = parser.parse_args(argv[1:])
# Take care of options.
if options.settings: