From 00c3f0749b7cc62d9052a6126bb77dcb66e43985 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Sep 23 2014 13:46:49 +0000 Subject: Adjust typo in variable name --- diff --git a/progit/lib.py b/progit/lib.py index 7f10e49..b372abc 100644 --- a/progit/lib.py +++ b/progit/lib.py @@ -135,12 +135,12 @@ def add_issue_comment(session, issue, comment, user, ticketfolder): 'No user "%s" found' % user ) - isse_comment = model.IssueComment( + issue_comment = model.IssueComment( issue_id=issue.id, comment=comment, user_id=user_obj.id, ) - session.add(isse_comment) + session.add(issue_comment) # Make sure we won't have SQLAlchemy error before we create the repo session.flush()