We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04a564a commit 5cbcbc6Copy full SHA for 5cbcbc6
gui/wxpython/core/menutree.py
@@ -256,7 +256,7 @@ def collectParents(node, parents):
256
else:
257
import grass.script.core as gscore
258
259
- gscore.fatal("Unknown value for parameter menu: " % menu)
+ gscore.fatal("Unknown value for parameter menu: %s" % menu)
260
261
if action == "strings":
262
menudata.PrintStrings(sys.stdout)
@@ -269,6 +269,6 @@ def collectParents(node, parents):
269
270
271
272
- gscore.fatal("Unknown value for parameter action: " % action)
+ gscore.fatal("Unknown value for parameter action: %s" % action)
273
274
sys.exit(0)
0 commit comments