aboutsummaryrefslogtreecommitdiff
path: root/backend/data/trimTree.py
diff options
context:
space:
mode:
Diffstat (limited to 'backend/data/trimTree.py')
-rwxr-xr-xbackend/data/trimTree.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/data/trimTree.py b/backend/data/trimTree.py
index f580e7e..2642ca0 100755
--- a/backend/data/trimTree.py
+++ b/backend/data/trimTree.py
@@ -50,7 +50,7 @@ print(f"Total of {len(nodesToKeep)} nodes to keep")
# Find root node
query = "SELECT name FROM nodes LEFT JOIN edges ON nodes.name = edges.child WHERE edges.node IS NULL LIMIT 1"
(rootName,) = dbCur.execute(query).fetchone()
-print(f"Found root node {rootName}")
+print(f"Found root node \"{rootName\"}")
# Traverse tree, looking for trimmable nodes
print("Looking for trimmable nodes")
nodeToTipsChg = {}