diff options
| -rwxr-xr-x | overlord/client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/overlord/client.py b/overlord/client.py index cf7a375..0264cad 100755 --- a/overlord/client.py +++ b/overlord/client.py @@ -92,7 +92,7 @@ class Client(): all_certs = [] seperate_gloobs = spec.split(";") for each_gloob in seperate_gloobs: - actual_gloob = "%s/%s.pem" % (CERT_PATH, each_gloob) + actual_gloob = "%s/%s.cert" % (CERT_PATH, each_gloob) certs = glob.glob(actual_gloob) for cert in certs: all_certs.append(cert) |
