Stop assuming handler will return changes from import

This commit is contained in:
Lance Edgar 2016-04-21 13:33:01 -05:00
parent 3564178d8d
commit 01357e7164

View file

@ -949,7 +949,7 @@ class NewImportSubcommand(Subcommand):
log.debug("using handler: {}".format(handler))
log.debug("importing models: {}".format(models))
log.debug("args are: {}".format(args))
changes = handler.import_data(models, args)
handler.import_data(models, args)
class ImportRattail(NewImportSubcommand):