Commit a4532451 authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki Committed by Jérome Perrin

py3: avoid None >= None comparison.

parent cbff7225
......@@ -14,7 +14,7 @@
<key> <string>expression</string> </key>
<value> <string encoding="cdata"><![CDATA[
python: object.getStopDate() >= object.getStartDate()
python: object.getStopDate() >= object.getStartDate() if object.hasStartDate() else True
]]></string> </value>
</item>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment