Skip to content

Commit 28659b6

Browse files
committed
[processing] fixed OutputFile constructor
1 parent 293ac60 commit 28659b6

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

python/plugins/processing/outputs/OutputFile.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,7 @@
3131
class OutputFile(Output):
3232

3333
def __init__(self, name='', description='', ext = None):
34-
self.name = name
35-
self.description = description
34+
Output.__init__(self, name, description)
3635
self.ext = ext
3736

3837
def getFileFilter(self, alg):

0 commit comments

Comments
 (0)