Skip to content
This repository has been archived by the owner on Dec 6, 2023. It is now read-only.

Commit

Permalink
Merge pull request #609 from snovvcrash/master
Browse files Browse the repository at this point in the history
Fix subnets module
  • Loading branch information
mpgn authored Jul 22, 2022
2 parents 3524b4e + a9e56a0 commit 6f033bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cme/modules/subnets.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def options(self, context, module_options):
multiple_hosts = False

def on_login(self, context, connection):
dn = ','.join(["DC=%s" % part for part in context.domain.split('.')])
dn = ','.join(["DC=%s" % part for part in connection.domain.split('.')])

context.log.info('Getting the Sites and Subnets from domain')

Expand Down

0 comments on commit 6f033bb

Please sign in to comment.