Loading ccnode/tags.py +2 −2 Original line number Diff line number Diff line Loading @@ -92,7 +92,7 @@ class DynamicTags(object): yield t def tag_inspector(mod): def tag_inspector(mod, parent=None): """Inspect module to find tags. :param module mod: module to inspect Loading Loading @@ -134,7 +134,7 @@ def tag_inspector(mod): logger.debug('Introspected %s with ttl %s.' % (n, ttl)) # finally add the tag tags.append(Tag(n, m, ttl)) tags.append(Tag(n, m, ttl, parent)) return tags Loading Loading
ccnode/tags.py +2 −2 Original line number Diff line number Diff line Loading @@ -92,7 +92,7 @@ class DynamicTags(object): yield t def tag_inspector(mod): def tag_inspector(mod, parent=None): """Inspect module to find tags. :param module mod: module to inspect Loading Loading @@ -134,7 +134,7 @@ def tag_inspector(mod): logger.debug('Introspected %s with ttl %s.' % (n, ttl)) # finally add the tag tags.append(Tag(n, m, ttl)) tags.append(Tag(n, m, ttl, parent)) return tags Loading