diff options
author | ee7 <45465154+ee7@users.noreply.github.com> | 2020-12-21 18:41:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-21 09:41:56 -0800 |
commit | 297c8e403d110dd872e070563328f4e0c734cd01 (patch) | |
tree | 30b72bb67d7f67905432797406bd84c45fe0a419 /lib/pure/ssl_certs.nim | |
parent | 29c9a1c14b67ababca7b8ad7f80a0b84d74cfc9b (diff) | |
download | Nim-297c8e403d110dd872e070563328f4e0c734cd01.tar.gz |
styleCheck: Fix some inconsistent identifiers (#16177)
Diffstat (limited to 'lib/pure/ssl_certs.nim')
-rw-r--r-- | lib/pure/ssl_certs.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pure/ssl_certs.nim b/lib/pure/ssl_certs.nim index d04244307..c1003f445 100644 --- a/lib/pure/ssl_certs.nim +++ b/lib/pure/ssl_certs.nim @@ -20,7 +20,7 @@ import strutils # FWIW look for files before scanning entire dirs. -const certificate_paths = [ +const certificatePaths = [ # Debian, Ubuntu, Arch: maintained by update-ca-certificates, SUSE, Gentoo # NetBSD (security/mozilla-rootcerts) # SLES10/SLES11, https://golang.org/issue/12139 @@ -77,7 +77,7 @@ iterator scanSSLCertificates*(useEnvVars = false): string = else: when not defined(haiku): - for p in certificate_paths: + for p in certificatePaths: if p.endsWith(".pem") or p.endsWith(".crt"): if fileExists(p): yield p |