Skip to content

Commit

Permalink
Merge branch 'main' into hotfix/restore-impersonation-paths
Browse files Browse the repository at this point in the history
  • Loading branch information
jarosenb authored Oct 24, 2023
2 parents 96bce95 + 0ce1c66 commit b705ac2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion designsafe/apps/djangoRT/rtUtil.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def createTicket(self, ticket):
:return: The newly created ticket ID
"""
return self.tracker.create_ticket(
Subject=ticket.subject, Requestors=ticket.requestor, Cc=",".join(ticket.cc),
Subject=ticket.subject, Requestor=ticket.requestor, Cc=",".join(ticket.cc),
Text=ticket.problem_description.replace('\n', '\n '))

def replyToTicket(self, ticket_id, text='', files=[]):
Expand Down

0 comments on commit b705ac2

Please sign in to comment.