git-svn-id: https://svn.osgeo.org/grass/grass/trunk@69803 15284696-431f-4ddb-bdfa-cd5b030d7da7
@@ -636,7 +636,7 @@ def cmdtuple_to_list(cmd):
if k in ('flags', 'help', 'verbose', 'quiet', 'overwrite'):
continue
if ' ' in v:
- v = '"{}"'.format(v)
+ v = '"%s"' % v
cmdList.append('%s=%s' % (k, v))
return cmdList