##// END OF EJS Templates
Don't warn on empty modules when scanning API
Thomas Kluyver -
Show More
@@ -220,7 +220,7 b' class ApiDocWriter(object):'
220 220 # get the names of all classes and functions
221 221 functions, classes = self._parse_module(uri)
222 222 if not len(functions) and not len(classes):
223 print ('WARNING: Empty -', uri) # dbg
223 #print ('WARNING: Empty -', uri) # dbg
224 224 return ''
225 225
226 226 # Make a shorter version of the uri that omits the package name for
General Comments 0
You need to be logged in to leave comments. Login now