DaanHoogland commented on a change in pull request #5348: URL: https://github.com/apache/cloudstack/pull/5348#discussion_r692921578
########## File path: test/integration/component/test_multiple_nic_support.py ########## @@ -224,7 +224,7 @@ def setUpClass(cls): cls.virtual_machine1.default_network_id = nic.networkid break except Exception as e: - cls.fail("Exception while deploying virtual machine: %s" % e) + cls.fail(f"Exception while deploying virtual machine: {e}") Review comment: ok, double checked: ``` >>> e = Exception("root cause") >>> raise Exception(f"nested exception {e}") Traceback (most recent call last): File "<stdin>", line 1, in <module> Exception: nested exception root cause ``` I'll fix if it turns out to be a problem for anyone ;) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org