Skip to content

Commit

Permalink
review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
robnagler committed Apr 29, 2024
1 parent 67d6593 commit f3fb31d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rsconf/component/opendkim.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""create dkim configuration for named and/or opendkim
:copyright: Copyright (c) 2017 RadiaSoft LLC. All Rights Reserved.
:copyright: Copyright (c) 2024 RadiaSoft LLC. All Rights Reserved.
:license: http://www.apache.org/licenses/LICENSE-2.0.html
"""

Expand Down
2 changes: 1 addition & 1 deletion rsconf/pkcli/setup_dev.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def _add_host(j2_ctx, srv, host):
from rsconf.component import rsconf

def _netrc():
for l in rsconf.host_init(j2_ctx, host).split("(?<=\n)"):
for l in re.compile("(?<=\n)").split(rsconf.host_init(j2_ctx, host)):
if l.startswith("machine"):
return l
raise AssertionError("format of host_init changed no machine line found")
Expand Down

0 comments on commit f3fb31d

Please sign in to comment.