From e4552a879f95a5124664167b8659e21c9890d6f2 Mon Sep 17 00:00:00 2001 From: brent s Date: Mon, 29 Jan 2018 01:49:42 -0500 Subject: [PATCH 1/2] oops typo --- storage/backups/borg/sample.config.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/storage/backups/borg/sample.config.json b/storage/backups/borg/sample.config.json index 7c31a33..72532b9 100644 --- a/storage/backups/borg/sample.config.json +++ b/storage/backups/borg/sample.config.json @@ -1,4 +1,4 @@ -# A normal config would be placed in the current user's come directory, +# A normal config would be placed in the current user's home directory, # typically under ~/.config/optools/backup.json { @@ -32,4 +32,4 @@ "host": "backups.domain.tld", # where the borg server is "ctx": "ssh -p 1234" # if you run a borg-specific SSHD on an alternate port } -} \ No newline at end of file +} From 7f033963258bf6f734f9f9841ae8e59e99fe6415 Mon Sep 17 00:00:00 2001 From: brent s Date: Wed, 31 Jan 2018 20:42:46 -0500 Subject: [PATCH 2/2] 14:04:47 < jthan> r00t^2: can you add a return() to the main here? 14:04:49 < jthan> https://git.square-r00t.net/OpTools/tree/arch/repoclone.py 14:04:49 < jthan> lol --- arch/repoclone.py | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/repoclone.py b/arch/repoclone.py index f210361..9d81971 100755 --- a/arch/repoclone.py +++ b/arch/repoclone.py @@ -146,6 +146,7 @@ def parseArgs(): def main(): args = vars(parseArgs().parse_args()) sync(args) + return() if __name__ == '__main__': main()