Commit fed2877c authored by Simon Charette's avatar Simon Charette
Browse files

Fix a regression introduced by f011b903.

`django.get_version` was actually used by the module.
parent f011b903
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -321,7 +321,7 @@ class ManagementUtility(object):
        # These options could affect the commands that are available, so they
        # must be processed early.
        parser = LaxOptionParser(usage="%prog subcommand [options] [args]",
                                 version=get_version(),
                                 version=django.get_version(),
                                 option_list=BaseCommand.option_list)
        try:
            options, args = parser.parse_args(self.argv)