Changeset 10049 in genesis


Ignore:
Timestamp:
Mar 7, 2012, 5:52:15 PM (13 years ago)
Author:
rick
Message:

Allow single quotes to be used as aprostof, disallow using ".

Related-To ticket:113

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tools/gformat.py

    r10041 r10049  
    442442  """ Get yaml value in right syntax for outputting """
    443443  if isinstance(value,str):
    444     output = "'%s'" % value
     444    output = '"%s"' % value
    445445  else:
    446446    output = value
Note: See TracChangeset for help on using the changeset viewer.