Skip to content

Commit

Permalink
Merge pull request #695 from bioconda/epruesse-patch-1
Browse files Browse the repository at this point in the history
Fix packages listed as recipes
  • Loading branch information
mbargull authored Mar 22, 2021
2 parents c6ffe3f + 6b31b8c commit ae0128e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bioconda_utils/sphinxext.py
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@ def get_objects(self):
- -1: object should not show up in search at all
"""
for (typ, name), (docname, ref) in self.data['objects'].items():
dispname = "Recipe '{}'".format(name)
dispname = "{} '{}'".format(typ, name)
yield name, dispname, typ, docname, ref, 1

def merge_domaindata(self, docnames: List[str], otherdata: Dict) -> None:
Expand Down

0 comments on commit ae0128e

Please sign in to comment.