From cebb418be54558a70722c97fec5558839b4dc666 Mon Sep 17 00:00:00 2001 From: Eric Torres Date: Fri, 12 Apr 2019 10:43:38 -0700 Subject: [PATCH] Fix incorrect method call --- bin/backup | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/backup b/bin/backup index df4788a..37cebfe 100644 --- a/bin/backup +++ b/bin/backup @@ -179,7 +179,7 @@ if __name__ == "__main__": curr_snapshot = None try: - with merge_files(INCLUDE_PATHS) as include_file: + with merge_files(*INCLUDE_PATHS) as include_file: curr_snapshot = repo.create_snapshot(args.name) rsync( *rsync_opts, diff --git a/setup.py b/setup.py index 7e85709..8ab9cba 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ with open("README", "r") as fh: # ========== Package Setup ========== setuptools.setup( name="rbackup", - version="0.2", + version="0.2.1", author="Eric Torres", author_email="erictorres4@protonmail.com", description="An rsync-based tool for creating backups",