##// END OF EJS Templates
demandimport: add __main__ to the blacklist (because of setuptools)
Greg Ward -
r10598:1037bd44 stable
parent child Browse files
Show More
@@ -130,6 +130,9 b' ignore = ['
130 130 'resource',
131 131 # this trips up many extension authors
132 132 'gtk',
133 # setuptools' pkg_resources.py expects "from __main__ import x" to
134 # raise ImportError if x not defined
135 '__main__',
133 136 ]
134 137
135 138 def enable():
General Comments 0
You need to be logged in to leave comments. Login now