Skip to content

Commit cc35d72

Browse files
authored
Merge branch 'opensciencegrid:master' into set-output-fix
2 parents c21d591 + 6c62d32 commit cc35d72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

osg-comanage-project-usermap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ def get_osguser_groups(filter_group_name=None):
205205

206206
def print_usermap_to_file(osguser_groups, file):
207207
for osguser, groups in sorted(osguser_groups.items()):
208-
print("* {} {}".format(osguser, ",".join(groups)), file=file)
208+
print("* {} {}".format(osguser, ",".join(group.strip() for group in groups)), file=file)
209209

210210

211211
def print_usermap(osguser_groups):

0 commit comments

Comments
 (0)