From cc99df4ef0da7058ab24bb014a17dd79c2709872 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Feb 20 2015 12:22:35 +0000 Subject: Fix adding a comment to an issue --- diff --git a/progit/lib.py b/progit/lib.py index 6f54532..6effd91 100644 --- a/progit/lib.py +++ b/progit/lib.py @@ -203,7 +203,7 @@ def add_issue_comment(session, issue, comment, user, ticketfolder): ) issue_comment = model.IssueComment( - issue_id=issue.id, + issue_uid=issue.uid, comment=comment, user_id=user_obj.id, )