[GRASS-SVN] r67502 - grass/trunk/lib/init
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed Jan 6 04:11:39 PST 2016
Author: martinl
Date: 2016-01-06 04:11:39 -0800 (Wed, 06 Jan 2016)
New Revision: 67502
Modified:
grass/trunk/lib/init/grass.py
Log:
fix syntax typo introduced in r67501
Modified: grass/trunk/lib/init/grass.py
===================================================================
--- grass/trunk/lib/init/grass.py 2016-01-06 12:08:55 UTC (rev 67501)
+++ grass/trunk/lib/init/grass.py 2016-01-06 12:11:39 UTC (rev 67502)
@@ -1364,7 +1364,7 @@
try:
os.kill(int(pid), signal.SIGTERM)
except OSError as e:
- message(_("Unable to close GUI. {}".format(e)))
+ message(_("Unable to close GUI. {}").format(e))
def clear_screen():
"""Clear terminal"""
More information about the grass-commit
mailing list