summaryrefslogtreecommitdiffstats
path: root/func/certs.py
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@redhat.com>2008-01-29 17:32:38 -0500
committerMichael DeHaan <mdehaan@redhat.com>2008-01-29 17:32:38 -0500
commit18d37e6e8ba7c543c1fea3b4ae41d75df988bfca (patch)
treef7572ace3f85b08fcfa22a6c39435c84862963a5 /func/certs.py
parentcd30007bc66ab5b0512e94c94c84de5e95e8e3ad (diff)
downloadthird_party-func-18d37e6e8ba7c543c1fea3b4ae41d75df988bfca.tar.gz
third_party-func-18d37e6e8ba7c543c1fea3b4ae41d75df988bfca.tar.xz
third_party-func-18d37e6e8ba7c543c1fea3b4ae41d75df988bfca.zip
Fix some typos
Diffstat (limited to 'func/certs.py')
-rw-r--r--func/certs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/func/certs.py b/func/certs.py
index 810d17c..413f9ce 100644
--- a/func/certs.py
+++ b/func/certs.py
@@ -50,7 +50,7 @@ def make_csr(pkey, dest=None, cn=None):
else:
fqdn = socket.getfqdn()
host = socket.gethostname()
- if fdqn.find(host) != -1:
+ if fqdn.find(host) != -1:
subj.CN = fqdn
else:
subj.CN = host