diff --git a/bin/backup b/bin/backup index 37cebfe..37280ab 100644 --- a/bin/backup +++ b/bin/backup @@ -51,7 +51,7 @@ EXTRA_RSYNC_OPTS = { # ----- File Options ----- CONFIG_DIR = "/etc/rbackup" FILE_OPTS = [f"--exclude-from={CONFIG_DIR}/home-exclude.conf"] -INCLUDE_PATHS = [f"{CONFIG_DIR}/etc-include.conf", "{CONFIG_DIR}/system-include.conf"] +INCLUDE_PATHS = [f"{CONFIG_DIR}/etc-include.conf", f"{CONFIG_DIR}/system-include.conf"] COMMENT_REGEX = r"^[^#; ]+" @@ -144,7 +144,7 @@ def merge_files(*config_files): l for l in opened_file.readlines() if re.match(COMMENT_REGEX, l) ) else: - syslog.warning(f"{config_file} does not exist, ignoring") + syslog.warning(f"{config_file} does not exist, ignoring.") include_lines.sort() diff --git a/setup.py b/setup.py index 8ab9cba..bc89b8a 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.1", + version="0.2.2", author="Eric Torres", author_email="erictorres4@protonmail.com", description="An rsync-based tool for creating backups",