~ubuntu-branches/ubuntu/trusty/openerp-client/trusty

« back to all changes in this revision

Viewing changes to bin/options.py

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann
  • Date: 2010-05-07 14:27:48 UTC
  • mfrom: (1.3.1 upstream) (12.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20100507142748-jzko6vxggw8czdmq
Tags: 5.0.10-1
* Adding python-tz to recommends.
* Merging upstream version 5.0.10.

Show diffs side-by-side

added added

removed removed

Lines of Context:
169
169
                        value = True
170
170
                    if value=='False' or value=='false':
171
171
                        value = False
 
172
                    if value=='None' or value=='none':
 
173
                        value = None
172
174
                    self.options[section+'.'+name] = value
173
175
        except Exception, e:
174
176
            import logging