Skip to content

Commit 66fab04

Browse files
author
gsherman
committed
Fixes to the mapserver exporter
git-svn-id: http://svn.osgeo.org/qgis/trunk@7999 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent b58e7a7 commit 66fab04

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

python/plugins/mapserver_export/mapserverexport.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def run(self):
7878
if result == 1:
7979
# get the settings from the dialog and export the map file
8080
print "Creating exporter using %s and %s" % (self.dlg.ui.txtQgisFilePath.text(), self.dlg.ui.txtMapFilePath.text())
81-
exporter = Qgis2Map(self.dlg.ui.txtQgisFilePath.text(), self.dlg.ui.txtMapFilePath.text())
81+
exporter = Qgis2Map(str(self.dlg.ui.txtQgisFilePath.text()), str(self.dlg.ui.txtMapFilePath.text()))
8282
print "Setting options"
8383
exporter.setOptions(
8484
self.dlg.ui.cmbMapUnits.currentText(),

python/plugins/mapserver_export/ui_mapserverexport.py

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

33
# Form implementation generated from reading ui file 'qgsmapserverexportbase.ui'
44
#
5-
# Created: Mon Jan 7 17:08:49 2008
5+
# Created: Thu Jan 17 14:02:57 2008
66
# by: PyQt4 UI code generator 4.3.3
77
#
88
# WARNING! All changes made in this file will be lost!

0 commit comments

Comments
 (0)