##// END OF EJS Templates
Workaround for gnomekeyring mercurial.demandimport incompatibility...
Alan Franzoni -
r64:414b552d default
parent child Browse files
Show More
@@ -18,6 +18,13 b' except:'
18 from mercurial.httprepo import httprepository
18 from mercurial.httprepo import httprepository
19 from mercurial import mail
19 from mercurial import mail
20
20
21 # mercurial.demandimport incompatibility workaround,
22 # would cause gnomekeyring, one of the possible
23 # keyring backends, not to work.
24 from mercurial.demandimport import ignore
25 if "gobject._gobject" not in ignore:
26 ignore.append("gobject._gobject")
27
21 import keyring
28 import keyring
22 from urlparse import urlparse
29 from urlparse import urlparse
23 import urllib2
30 import urllib2
General Comments 0
You need to be logged in to leave comments. Login now