mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-02 16:28:51 +02:00
No need for explicit string conversion
This commit is contained in:
parent
51b04bc077
commit
4e1182c3dc
5 changed files with 16 additions and 16 deletions
|
@ -737,7 +737,7 @@ class Graph(BaseObject):
|
|||
try:
|
||||
self.addEdge(self.attribute(srcName), self.attribute(dstName))
|
||||
except (KeyError, ValueError) as e:
|
||||
logging.warning(f"Failed to restore edge {srcName} -> {dstName}: {str(e)}")
|
||||
logging.warning(f"Failed to restore edge {srcName} -> {dstName}: {e}")
|
||||
|
||||
def upgradeAllNodes(self):
|
||||
""" Upgrade all upgradable CompatibilityNode instances in the graph. """
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue