From 58736f7f95c42f66fa7bd6ef3905bb0ba43d8135 Mon Sep 17 00:00:00 2001 From: brent s Date: Wed, 25 Oct 2017 03:22:05 -0400 Subject: [PATCH] typos. gorram typos. --- storage/backups/borg/backup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/backups/borg/backup.py b/storage/backups/borg/backup.py index 4352696..79c1d8a 100755 --- a/storage/backups/borg/backup.py +++ b/storage/backups/borg/backup.py @@ -100,7 +100,7 @@ class Backup(object): def cmdExec(self, cmd, stdoutfh = None): self.logger.debug('Running command: {0}'.format(' '.join(cmd))) - if self.args['dryryun']: + if self.args['dryrun']: return() # no-op if outfh: _err = subprocess.run(cmd, stdout = stdoutfh, stderr = subprocess.PIPE).stderr.decode('utf-8').strip()