commit 4454d8990b7f6ceaad82647ea56fab6805327ccc
parent 28b8c5aea289ccd334682c1bdef54244d0cd51b9
Author: gearsix <gearsix@tuta.io>
Date: Sat, 6 Aug 2022 10:33:35 -0400
tidyup in printed logs
Diffstat:
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/dotfm.py b/src/dotfm.py
@@ -317,7 +317,6 @@ def edit(dotfile):
return
target = INSTALLED[index][0]
os.system('{} {}'.format(EDITOR, target))
- info('You might need to re-open the terminal, or re-execute the relevant dotfile')
def edit_promptinstall(dotfile):
yn = '-'
@@ -359,6 +358,7 @@ if __name__ == '__main__':
if ARGS.cmd == 'install' or ARGS.cmd == 'in':
for d in ARGS.dotfile:
install(os.path.abspath(d))
+ print("")
elif ARGS.cmd == 'update' or ARGS.cmd == 'up':
if len(ARGS.dotfile) < 2:
debug('invalid number of arguments')
@@ -377,3 +377,5 @@ if __name__ == '__main__':
elif ARGS.cmd == 'list' or ARGS.cmd == 'ls':
list(ARGS.dotfile)
writeinstalled()
+ info('You might need to re-open the terminal, or re-execute the relevant dotfile')
+