Skip to content

Commit 27afd6c

Browse files
committed
Fix headers
1 parent 5e89058 commit 27afd6c

File tree

3 files changed

+22
-3
lines changed

3 files changed

+22
-3
lines changed

python/plugins/processing/preconfigured/DeletePreconfiguredAlgorithmAction.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
"""
44
***************************************************************************
5-
NewPreconfiguredAlgorithmAction.py
5+
DeletePreconfiguredAlgorithmAction.py
66
---------------------
77
Date : April 2016
88
Copyright : (C) 2016 by Victor Olaya

python/plugins/processing/preconfigured/PreconfiguredAlgorithm.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
"""
44
***************************************************************************
5-
PreconfiguredAlgorithmAction.py
5+
PreconfiguredAlgorithm.py
66
---------------------
77
Date : April 2016
88
Copyright : (C) 2016 by Victor Olaya
@@ -63,4 +63,4 @@ def execute(self, progress):
6363
for name, value in self.description["outputs"].iteritems():
6464
self.alg.setOutputValue(name, value)
6565
self.alg.execute(progress)
66-
self.outputs = self.alg.outputs
66+
self.outputs = self.alg.outputs

python/plugins/processing/preconfigured/PreconfiguredUtils.py

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
# -*- coding: utf-8 -*-
2+
3+
"""
4+
***************************************************************************
5+
PreconfiguredUtils.py
6+
---------------------
7+
Date : April 2016
8+
Copyright : (C) 2016 by Victor Olaya
9+
Email : volayaf at gmail dot com
10+
***************************************************************************
11+
* *
12+
* This program is free software; you can redistribute it and/or modify *
13+
* it under the terms of the GNU General Public License as published by *
14+
* the Free Software Foundation; either version 2 of the License, or *
15+
* (at your option) any later version. *
16+
* *
17+
***************************************************************************
18+
"""
19+
120
import os
221
from processing.tools.system import mkdir, userFolder
322

0 commit comments

Comments
 (0)