From 4aca3b3ebc7c7d069eefd2e701b6336513c82a28 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Feb 20 2015 10:45:51 +0000 Subject: Fix the get_tags_of_project method in the internal API --- diff --git a/progit/lib.py b/progit/lib.py index 4e5f3bf..7c18fcf 100644 --- a/progit/lib.py +++ b/progit/lib.py @@ -729,7 +729,7 @@ def get_tags_of_project(session, project): ).filter( model.Tag.tag == model.TagIssue.tag ).filter( - model.TagIssue.issue_id == model.Issue.id + model.TagIssue.issue_uid == model.Issue.uid ).filter( model.Issue.project_id == project.id ).order_by(