Skip to content

Commit

Permalink
[processing] minor indentation fix
Browse files Browse the repository at this point in the history
  • Loading branch information
volaya committed Nov 6, 2015
1 parent 8d8fac4 commit 22ace3d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/plugins/processing/tools/system.py
Expand Up @@ -46,7 +46,8 @@ def userFolder():
return unicode(QDir.toNativeSeparators(userDir))

def defaultOutputFolder():
folder = os.path.join(os.path.dirname(QgsApplication.qgisUserDbFilePath()), "processing", "outputs")
folder = os.path.join(os.path.dirname(QgsApplication.qgisUserDbFilePath()),
"processing", "outputs")
if not QDir(folder).exists():
QDir().mkpath(folder)

Expand Down

0 comments on commit 22ace3d

Please sign in to comment.