Skip to content

Commit

Permalink
[processing] fixed string representation of outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
volaya committed Oct 6, 2014
1 parent 6cf39a5 commit c5c4d41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/core/outputs.py
Expand Up @@ -60,7 +60,7 @@ def __init__(self, name='', description='', hidden=False):
self.open = True

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

def getValueAsCommandLineParameter(self):
if self.value is None:
Expand Down

0 comments on commit c5c4d41

Please sign in to comment.