From 4a091c9255e6761b27b4a4ca29ea45d22f6f88e4 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Feb 09 2016 14:56:06 +0000 Subject: Fix docstring for _obj_anchor_tag --- diff --git a/pagure/pfmarkdown.py b/pagure/pfmarkdown.py index 7ecd83c..8a4e33a 100644 --- a/pagure/pfmarkdown.py +++ b/pagure/pfmarkdown.py @@ -177,7 +177,7 @@ def _pr_exists(user, repo, idx): def _obj_anchor_tag(user, repo, obj, text): - """ Utility method generating the link to an issue. """ + """ Utility method generating the link to an issue or a PR. """ if obj.isa == 'issue': url = flask.url_for( 'view_issue', username=user, repo=repo, issueid=obj.id)