# I am the Watcher. I am your guide through this vast new twtiverse.
# 
# Usage:
#     https://watcher.sour.is/api/plain/users              View list of users and latest twt date.
#     https://watcher.sour.is/api/plain/twt                View all twts.
#     https://watcher.sour.is/api/plain/mentions?uri=:uri  View all mentions for uri.
#     https://watcher.sour.is/api/plain/conv/:hash         View all twts for a conversation subject.
# 
# Options:
#     uri     Filter to show a specific users twts.
#     offset  Start index for quey.
#     limit   Count of items to return (going back in time).
# 
# twt range = 1 4
# self = https://watcher.sour.is/conv/d4kuf5a
I believe I'd missed an f:


f
~/src/jenny $ git diff
diff --git a/jenny b/jenny
index ada8da2..8ae9a06 100755
--- a/jenny
+++ b/jenny
@@ -1194,7 +1194,7 @@ if __name__ == '__main__':
     if args.edit:
	edit_twt_file(app)
     elif args.fetch:
-        with DirectoryLock(f'/tmp/jenny-{getuser()}.run'):
+        with DirectoryLock(expanduser(f'~/tmp/jenny-{getuser()}.run')):
             retrieve_all(app)
     elif args.last_seen:
	 print('Feeds last seen at (times are local time), oldest first:')
@aelaraji You could just remove the {getuser()} part because you added ~.~
@falsifian You are correct, but I ended up switching to /data/data/com.termux/files/usr/tmp as suggested by @doesnm in (#66py4ja). there must have been a reason why that file was placed in /tmp/ in the first place, I just don't know my way around python that much to figure it out 😅.
@falsifian You are correct, but I ended up switching to /data/data/com.termux/files/usr/tmp as suggested by @doesnm in (#66py4ja). there must have been a reason why that file was placed in /tmp/ in the first place, I just don't know my way around python that much to figure it out 😅.