Skip to content

Commit

Permalink
fixed #5852
Browse files Browse the repository at this point in the history
git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@270 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d
  • Loading branch information
volayaf committed Jun 29, 2012
1 parent 8acc517 commit 66234c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sextante/modeler/ModelerDialog.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ def saveModel(self):
QtGui.QMessageBox.information(self, "Model saving", "Model was correctly saved.") QtGui.QMessageBox.information(self, "Model saving", "Model was correctly saved.")


def openModel(self): def openModel(self):
filename = QtGui.QFileDialog.getOpenFileName(self, "Open Model", ModelerUtils.modelsFolder(), "SEXTANTE models (*.model)") filename = unicode(QtGui.QFileDialog.getOpenFileName(self, "Open Model", ModelerUtils.modelsFolder(), "SEXTANTE models (*.model)"))
if filename: if filename:
try: try:
alg = ModelerAlgorithm() alg = ModelerAlgorithm()
Expand Down

0 comments on commit 66234c7

Please sign in to comment.