Skip to content

Commit 180ac50

Browse files
author
Mike Orr
committed
Fixed an invalid cross-module reference.
1 parent 019e96a commit 180ac50

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

user_sync/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ def create_dashboard_group(self, dashboard_group_qualified_name):
393393
group = None
394394
if (len(group_name) > 0):
395395
# check for existing group in case someone mistakenly declared an extended group that's already a mapping target
396-
group = user_sync.rules.get_dashboard_group(group_name, organization_name)
396+
group = user_sync.rules.Group.get_dashboard_group(group_name, organization_name)
397397
if group is None:
398398
group = user_sync.rules.Group(group_name, organization_name)
399399

0 commit comments

Comments
 (0)