Skip to content

Commit c5c4d41

Browse files
committedOct 6, 2014
[processing] fixed string representation of outputs
1 parent 6cf39a5 commit c5c4d41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎python/plugins/processing/core/outputs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def __init__(self, name='', description='', hidden=False):
6060
self.open = True
6161

6262
def __str__(self):
63-
return self.name + ' <' + self.__module__.split('.')[-1] + '>'
63+
return self.name + ' <' + self.__class__.__name__ + '>'
6464

6565
def getValueAsCommandLineParameter(self):
6666
if self.value is None:

0 commit comments

Comments
 (0)
Please sign in to comment.