# HG changeset patch
# User David M. Carr  <david@carrclan.us>
# Date 1348800161 14400
#      Thu Sep 27 22:42:41 2012 -0400
# Node ID 22b8df4c54c53d4fc504c7861117f317bb7d7bba
# Parent  ebf4ea20ade5ffe67bd6c49b6914bb19e8134362
docs: include buglink

Mercurial has support for including a link to an issue tracker when it detects
that an extension has broken.  This change includes the appropriate attribute
in the extension, pointing it at the issue tracker for the main BitBucket repo.

diff --git a/hggit/__init__.py b/hggit/__init__.py
--- a/hggit/__init__.py
+++ b/hggit/__init__.py
@@ -42,6 +42,8 @@
 import gitrepo, hgrepo
 from git_handler import GitHandler
 
+buglink = 'https://bitbucket.org/durin42/hg-git/issues'
+
 # support for `hg clone git://github.com/defunkt/facebox.git`
 # also hg clone git+ssh://git@github.com/schacon/simplegit.git
 _gitschemes = ('git', 'git+ssh', 'git+http', 'git+https')