From 08f78a92e851f54f89f1e5ba3aafe762422f6dc6 Mon Sep 17 00:00:00 2001 From: Derisis13 Date: Fri, 10 Dec 2021 21:09:33 +0100 Subject: [PATCH] Reformatted the print statement in the help --- main.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/main.py b/main.py index ed2c967..7ab9b16 100644 --- a/main.py +++ b/main.py @@ -109,10 +109,10 @@ if __name__ == '__main__': for option, value in options: if option in ("-h", "--help"): print("usage: barusu [opts]\n" - "Options:\n" - "\t-h --help: show this\n" - "\t-d --backup-dir [directory]: set the directory for the backup/restoration (default is ~/.backups)\n" - "\t-r --restore: run the restoration (from backupdir)\n") + "Options:\n" + "\t-h --help: show this\n" + "\t-d --backup-dir [directory]: set the directory for the backup/restoration (default is ~/.backups)\n" + "\t-r --restore: run the restoration (from backupdir)\n") exit() elif option in ("-d", "--backup-dir"): backupdir = os.path.expanduser(value)