This commit is contained in:
chrisw 2010-09-16 00:40:48 +01:00
commit eb6e2eea24
3 changed files with 8 additions and 1 deletions

2
TODO
View File

@ -17,6 +17,8 @@ Unknown milestone
- bash autocompletion
- clarify ImportError in load_model
- implement debug flag to jump into the error
- sqlautocode support
- serializers (json, yaml, etc)
0.6.1

View File

@ -25,6 +25,8 @@ Fixed bugs
- fixed bug when dropping columns with unique constraints in sqlite
- rewrite of the schema diff internals, now supporting column
differences in additon to missing columns and tables.
- fixed bug when passing empty list in
:func:`migrate.versioning.shell.main` failed
0.6 (11.07.2010)
---------------------------

View File

@ -64,7 +64,10 @@ def main(argv=None, **kwargs):
:param disable_logging: Let migrate configure logging
:type disable_logging: bool
"""
argv = argv or list(sys.argv[1:])
if argv is not None:
argv = argv
else:
argv = list(sys.argv[1:])
commands = list(api.__all__)
commands.sort()