Kaydet (Commit) fed2877c authored tarafından Simon Charette's avatar Simon Charette

Fix a regression introduced by f011b903.

`django.get_version` was actually used by the module.
üst f011b903
...@@ -321,7 +321,7 @@ class ManagementUtility(object): ...@@ -321,7 +321,7 @@ class ManagementUtility(object):
# These options could affect the commands that are available, so they # These options could affect the commands that are available, so they
# must be processed early. # must be processed early.
parser = LaxOptionParser(usage="%prog subcommand [options] [args]", parser = LaxOptionParser(usage="%prog subcommand [options] [args]",
version=get_version(), version=django.get_version(),
option_list=BaseCommand.option_list) option_list=BaseCommand.option_list)
try: try:
options, args = parser.parse_args(self.argv) options, args = parser.parse_args(self.argv)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment