Stop assuming handler will return changes from import
This commit is contained in:
parent
3564178d8d
commit
01357e7164
|
@ -949,7 +949,7 @@ class NewImportSubcommand(Subcommand):
|
||||||
log.debug("using handler: {}".format(handler))
|
log.debug("using handler: {}".format(handler))
|
||||||
log.debug("importing models: {}".format(models))
|
log.debug("importing models: {}".format(models))
|
||||||
log.debug("args are: {}".format(args))
|
log.debug("args are: {}".format(args))
|
||||||
changes = handler.import_data(models, args)
|
handler.import_data(models, args)
|
||||||
|
|
||||||
|
|
||||||
class ImportRattail(NewImportSubcommand):
|
class ImportRattail(NewImportSubcommand):
|
||||||
|
|
Loading…
Reference in a new issue