##// 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 # get the names of all classes and functions
220 # get the names of all classes and functions
221 functions, classes = self._parse_module(uri)
221 functions, classes = self._parse_module(uri)
222 if not len(functions) and not len(classes):
222 if not len(functions) and not len(classes):
223 print ('WARNING: Empty -', uri) # dbg
223 #print ('WARNING: Empty -', uri) # dbg
224 return ''
224 return ''
225
225
226 # Make a shorter version of the uri that omits the package name for
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