diff options
author | Anthony Wang | 2024-07-27 10:10:01 -0500 |
---|---|---|
committer | Anthony Wang | 2024-07-27 10:10:01 -0500 |
commit | d006068ca7553fb100247e343cfad3010b734bd9 (patch) | |
tree | 2f8e246f14586e3998c97582d731312be7151ea9 /client.py | |
parent | 088075b13330be9730e339d9eaf01e8ab468d6c3 (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.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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]))) |