From 57b6b18243306b534db1306054996c6fe1d93cc2 Mon Sep 17 00:00:00 2001 From: PCoder Date: Thu, 10 Dec 2020 10:04:04 +0530 Subject: [PATCH] Fix PEP warning --- datacenterlight/management/commands/check_vm_templates.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datacenterlight/management/commands/check_vm_templates.py b/datacenterlight/management/commands/check_vm_templates.py index 6424df80..be0a1957 100644 --- a/datacenterlight/management/commands/check_vm_templates.py +++ b/datacenterlight/management/commands/check_vm_templates.py @@ -42,7 +42,7 @@ class Command(BaseCommand): if vm_id and vm_id > 0: result_dict[vm_name] = "%s OK, created VM %s" % ( '%s %s %s' % (vm_template.opennebula_vm_template_id, - vm_template.name, vm_template.vm_type), + vm_template.name, vm_template.vm_type), vm_id ) self.stdout.write(self.style.SUCCESS(result_dict[vm_name]))