diff --git a/gns3server/controller/node.py b/gns3server/controller/node.py index fb91c815..10f956fb 100644 --- a/gns3server/controller/node.py +++ b/gns3server/controller/node.py @@ -96,7 +96,7 @@ class Node: try: setattr(self, prop, kwargs[prop]) except AttributeError as e: - log.critical("Cannot set attribute '%s'".format(prop)) + log.critical("Cannot set attribute '{}'".format(prop)) raise e else: if prop not in self.CONTROLLER_ONLY_PROPERTIES and kwargs[prop] is not None and kwargs[prop] != "":