From 5a5b3f9927dd68cfed15fa8320523f462f0ab087 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Thu, 4 Mar 2021 16:55:26 -0500 Subject: [PATCH] Correct incorrect function call on image import --- confluent_server/confluent/osimage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/confluent_server/confluent/osimage.py b/confluent_server/confluent/osimage.py index e63571d3..ff68a485 100644 --- a/confluent_server/confluent/osimage.py +++ b/confluent_server/confluent/osimage.py @@ -546,7 +546,7 @@ def import_image(filename, callback, backend=False, mfd=None): del identity['subname'] with open(distpath + '/distinfo.yaml', 'w') as distinfo: distinfo.write(yaml.dump(identity, default_flow_style=False)) - printit({'progress': 1.0}) + callback({'progress': 1.0}) sys.stdout.write('\n') def printit(info):