From e6724de4c805a4c712079b1e41f34c29cbdbaae1 Mon Sep 17 00:00:00 2001 From: Wes Barnett Date: Sun, 14 Feb 2021 17:57:24 -0500 Subject: [PATCH] add note that error can be ignored on install --- snap_pac.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/snap_pac.py b/snap_pac.py index 75613c8..06cd248 100755 --- a/snap_pac.py +++ b/snap_pac.py @@ -112,7 +112,8 @@ def main(snap_pac_ini, snapper_conf_file, args): snapper_cmd = create_snapper_cmd(args.preorpost, config, c, prefile) logging.debug(f"{snapper_cmd = }") except FileNotFoundError: - logging.error(f"Error: File containing pre snapshot number not found for \"{c}\" configuration.") + logging.error(f"Error: File containing pre snapshot number not found for \"{c}\" configuration. " + "If you are installing snap-pac for the first time, this is normal and can be ignored.") else: num = do_snapshot(args.preorpost, snapper_cmd, prefile) logging.info(f"==> {c}: {num}")