Use current_path in log

This commit is contained in:
Sybren A. Stüvel 2016-05-18 15:55:08 +02:00
parent 079689a532
commit 1cd42e246e

View File

@ -542,7 +542,7 @@ class BlenderCloudBrowser(bpy.types.Operator):
self.add_menu_item(UpNode(), None, 'FOLDER', '.. up ..')
# Download all child nodes
self.log.debug('Iterating over child nodes of %r', node_uuid)
self.log.debug('Iterating over child nodes of %r', self.current_path)
for child in children:
# print(' - %(_id)s = %(name)s' % child)
if child['node_type'] not in MenuItem.SUPPORTED_NODE_TYPES: