From b68fa36ea69951225dbe7b7e4dfa98fef5f60b55 Mon Sep 17 00:00:00 2001 From: Franco Fichtner Date: Tue, 12 Dec 2023 09:23:58 +0100 Subject: [PATCH] system: minor style thing #7063 --- src/opnsense/scripts/system/certctl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/opnsense/scripts/system/certctl.py b/src/opnsense/scripts/system/certctl.py index d5f630165..b6c93929b 100755 --- a/src/opnsense/scripts/system/certctl.py +++ b/src/opnsense/scripts/system/certctl.py @@ -93,7 +93,7 @@ def cmd_rehash(): os.symlink(os.path.relpath(filename, BLACKLISTDESTDIR), "%s/%s.%d" % (BLACKLISTDESTDIR, hash, seq)) else: if hash in targets['blacklisted']: - print("Skipping blacklisted certificate %s (%s)" % (filename, hash)) + print("Skipping blacklisted certificate %s (%s/%s.%d)" % (filename, BLACKLISTDESTDIR, hash, seq)) else: os.symlink(os.path.relpath(filename, CERTDESTDIR), "%s/%s.%d" % (CERTDESTDIR, hash, seq))