def handle(self, *labels, **options): manager = BackupManager() print manager.make_backup()
def handle(self, *labels, **options): if not labels or len(labels) != 1: raise CommandError('Enter one argument, the path to the backup tar file.') manager = BackupManager() manager.restore_backup(labels[0])