Skip to content

Commit 2e250e2

Browse files
committed
9pm.py: fix expand of ~/.9pm.rc file
Fixes: 2b974ae 9pm.py: increase verbosity when looking for configs Signed-off-by: Richard Alpe <[email protected]>
1 parent 8231eaf commit 2e250e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

9pm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -569,7 +569,7 @@ def run_suite(args, data, skip_suite):
569569
def get_first_existing_file(list, name):
570570
for f in list:
571571
if os.path.exists(os.path.expanduser(f)):
572-
return f
572+
return os.path.expanduser(f)
573573
vcprint(pcolor.faint, f"({name} not found: {f})")
574574

575575
print("error, can't find any {name} to use")

0 commit comments

Comments
 (0)