Skip to content

Commit

Permalink
Fixes to the mapserver exporter
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@7999 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
gsherman committed Jan 17, 2008
1 parent a06e1f5 commit c9cef72
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/plugins/mapserver_export/mapserverexport.py
Expand Up @@ -78,7 +78,7 @@ def run(self):
if result == 1:
# get the settings from the dialog and export the map file
print "Creating exporter using %s and %s" % (self.dlg.ui.txtQgisFilePath.text(), self.dlg.ui.txtMapFilePath.text())
exporter = Qgis2Map(self.dlg.ui.txtQgisFilePath.text(), self.dlg.ui.txtMapFilePath.text())
exporter = Qgis2Map(str(self.dlg.ui.txtQgisFilePath.text()), str(self.dlg.ui.txtMapFilePath.text()))
print "Setting options"
exporter.setOptions(
self.dlg.ui.cmbMapUnits.currentText(),
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/mapserver_export/ui_mapserverexport.py
Expand Up @@ -2,7 +2,7 @@

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

0 comments on commit c9cef72

Please sign in to comment.