Wrong python code generated for Default values with ""

Hi,

I've just noticed that if "Default value" for an attribute contains " (quota;) pogo 9.4.5 gereerates wrong python code, i.e.

<deviceProperties name="HostName" description="host name or ip address of camera">
  <type xsi:type="pogoDsl:StringType"/>
  <status abstract="false" inherited="false" concrete="true" concreteHere="true"/>
  <DefaultPropValue>&quot;&quot;</DefaultPropValue>
</deviceProperties>

gives

    'HostName':
        [PyTango.DevString, 
        "host name or ip address of camera",
        [""""] ],

which is not correct. It should be

 ["\"\""] ],

Bests, Jan

Edited by Damien Lacoste