Browse Source

wxGUI: fix OnImportWMS handler

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@54063 15284696-431f-4ddb-bdfa-cd5b030d7da7
Anna Petrášová 12 years ago
parent
commit
085d66c01f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      gui/wxpython/lmgr/frame.py

+ 1 - 1
gui/wxpython/lmgr/frame.py

@@ -1494,7 +1494,7 @@ class GMFrame(wx.Frame):
         dlg.CentreOnScreen()
         dlg.Show()
         
-    def OnImportWMS(self, event):
+    def OnImportWMS(self, event, cmd = None):
         """!Import data from OGC WMS server"""
         from ogc_services.wms import WMSDialog
         dlg = WMSDialog(parent = self)