aboutsummaryrefslogtreecommitdiff
path: root/client.py
diff options
context:
space:
mode:
authorAnthony Wang2024-07-27 10:10:01 -0500
committerAnthony Wang2024-07-27 10:10:01 -0500
commitd006068ca7553fb100247e343cfad3010b734bd9 (patch)
tree2f8e246f14586e3998c97582d731312be7151ea9 /client.py
parent088075b13330be9730e339d9eaf01e8ab468d6c3 (diff)
Convert rel paths to abs paths, update paths after move, insert dir to DB before recursion so DB is always a tree
Diffstat (limited to 'client.py')
-rw-r--r--client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/client.py b/client.py
index 2d7ea97..180335f 100644
--- a/client.py
+++ b/client.py
@@ -2,4 +2,4 @@ import sys
import xmlrpc.client
proxy = xmlrpc.client.ServerProxy("http://localhost:8000")
-print('\n'.join(proxy.search(sys.argv[1], sys.argv[2])))
+print("\n".join(proxy.search(sys.argv[1], sys.argv[2])))