Skip to content

Commit

Permalink
fix temporary file generation when downloading from OSM
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@11595 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Sep 8, 2009
1 parent 0cc8d08 commit 7243486
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/osm/OsmDownloadDlg.py
Expand Up @@ -325,7 +325,7 @@ def generateDefFileName(self):
if self.finished:
return

prefix=QString("/tmp/")
prefix=QDir.tempPath() + "/"
if self.dbm.currentKey:
key=QString(self.dbm.currentKey)
p=key.lastIndexOf("/")
Expand Down

0 comments on commit 7243486

Please sign in to comment.