Skip to content

Commit

Permalink
[FIX] Make the correct location for crash report
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanW2 committed Nov 9, 2017
1 parent 4c78526 commit e1b76e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/crashhandler/qgscrashreport.cpp
Expand Up @@ -143,7 +143,7 @@ void QgsCrashReport::exportToCrashFolder()
QDir dir( folder ); QDir dir( folder );
if ( !dir.exists() ) if ( !dir.exists() )
{ {
QDir().mkdir( folder ); QDir().mkpath( folder );
} }


QString fileName = folder + "/stack.txt"; QString fileName = folder + "/stack.txt";
Expand Down

0 comments on commit e1b76e0

Please sign in to comment.