mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-17 00:04:02 -04:00
[processing] fixed string representation of outputs
This commit is contained in:
parent
6cf39a532a
commit
c5c4d4164b
@ -60,7 +60,7 @@ class Output(object):
|
|||||||
self.open = True
|
self.open = True
|
||||||
|
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
return self.name + ' <' + self.__module__.split('.')[-1] + '>'
|
return self.name + ' <' + self.__class__.__name__ + '>'
|
||||||
|
|
||||||
def getValueAsCommandLineParameter(self):
|
def getValueAsCommandLineParameter(self):
|
||||||
if self.value is None:
|
if self.value is None:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user