Skip to content

Commit 0171f72

Browse files
author
Paul Philion
committed
fixing missing reference
1 parent be443a8 commit 0171f72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

netbot/netbot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ def append_redmine_note(self, ticket, message: discord.Message) -> None:
170170
log.debug(f"SYNC unknown Discord user: {message.author.name}")
171171
formatted = f'"Discord":{message.jump_url} user *{message.author.name}* said: {message.content}'
172172
# force user_login to None to use default user based on token (the admin)
173-
self.ticket_mgr.append_message(ticket.id, user_login=None, note=formatted)
173+
self.redmine.ticket_mgr.append_message(ticket.id, user_login=None, note=formatted)
174174

175175

176176
async def synchronize_ticket(self, ticket, thread:discord.Thread) -> bool:

0 commit comments

Comments
 (0)