Skip to content

Commit

Permalink
Fixed an issue where role properties were not loading. #7837
Browse files Browse the repository at this point in the history
  • Loading branch information
pravesh-sharma committed Sep 23, 2024
1 parent fb6cca4 commit 733212a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -794,7 +794,7 @@ def _set_seclabels(self, row):

def _set_rolemembership(self, row):

if 'rolmembers' in row:
if 'rolmembers' in row and row['rolmembers'] is not None:
rolmembers = []
for role in row['rolmembers']:
role = re.search(r'([01])(.+)', role)
Expand Down

0 comments on commit 733212a

Please sign in to comment.