Skip to content

Commit

Permalink
Merge branch '48-file-extensions-to-find-not-parsed-correctly-from-co…
Browse files Browse the repository at this point in the history
…nfig-file' into '51-new-release-0-5-1'

Resolve "File extensions to find not parsed correctly from config file"

See merge request open/stapled!32
  • Loading branch information
SnijderC committed Mar 30, 2018
2 parents 0e2098e + 5a8b68a commit 72f63c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stapled/core/daemon.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def __init__(self, **kwargs):
'haproxy_socket_mapping', None
)
self.file_extensions = kwargs.pop('file_extensions')
self.file_extensions.replace(" ", "").split(",")
self.file_extensions = self.file_extensions.replace(" ", "").split(",")
self.renewal_threads = kwargs.pop('renewal_threads')
self.refresh_interval = kwargs.pop('refresh_interval')
self.minimum_validity = kwargs.pop('minimum_validity')
Expand Down

0 comments on commit 72f63c6

Please sign in to comment.