Browse Source

wxGUI: note to submitting

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@55918 15284696-431f-4ddb-bdfa-cd5b030d7da7
Anna Petrášová 12 years ago
parent
commit
ec8197991a
1 changed files with 2 additions and 2 deletions
  1. 2 2
      SUBMITTING_WXGUI

+ 2 - 2
SUBMITTING_WXGUI

@@ -101,10 +101,10 @@ care of following rules:
 
     Do not use print command unless you know what are you doing.
 
-    Use named parameters in functions, e.g.
+    Use named parameters in functions (without space around '='), e.g.
 
     dlg = wx.FileDialog(parent=self, message=_("Choose file to save current workspace"),
-                        wildcard=_("GRASS Workspace File (*.gxw)|*.gxw"), style = wx.FD_SAVE)
+                        wildcard=_("GRASS Workspace File (*.gxw)|*.gxw"), style=wx.FD_SAVE)
 
     instead of