##// 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 'resource',
130 'resource',
131 # this trips up many extension authors
131 # this trips up many extension authors
132 'gtk',
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 def enable():
138 def enable():
General Comments 0
You need to be logged in to leave comments. Login now