I recently upgraded my system, it messed up my dev environment a bit and I need to straighten that out.
> On Mar 30, 2017, at 3:45 AM, Etienne Trimaille <[email protected]> > wrote: > > Hi Mats, > > You can open the file with a text editor : > /Applications/QGIS.app/Contents/Resources/python/plugins/processing/algs/saga/SagaUtils.py > > on line 75, instead of: > if not os.path.isdir(folder): > > replace with: > if folder and not os.path.isdir(folder): > > In some other words, just add "folder and" between the "if" and "os.path" > > William, do you think you will provide a release? > > > > 2017-03-30 8:46 GMT+02:00 Mats Lindegarth <[email protected]>: > Thanks Etienne! > I realize this forum is for developers and I am just a simple user. I do not > quite understand how to "apply this patch manually in the > file : > /Applications/QGIS.app/Contents/Resources/python/plugins/processing/algs/saga/SagaUtils.py". > Do I paste something in the Python console or in the Terminal or what. > Apologies for my ignorance and thanks for your efforts! If it is too > complicated I guess I'll have to wait for the next release. /Mats > > > > -- > View this message in context: > http://osgeo-org.1560.x6.nabble.com/QGIS-2-18-on-OSX-tp5311966p5314899.html > Sent from the QGIS - Developer mailing list archive at Nabble.com. > _______________________________________________ > Qgis-developer mailing list > [email protected] > List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer > Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer > _______________________________________________ Qgis-developer mailing list [email protected] List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer
