9 lines
284 B
Python
9 lines
284 B
Python
def match(command, settings):
|
|
return 'manage.py' in command.script and \
|
|
'migrate' in command.script \
|
|
and '--merge: will just attempt the migration' in command.stderr
|
|
|
|
|
|
def get_new_command(command, settings):
|
|
return u'{} --merge'.format(command.script)
|