diff options
author | Filipp Lepalaan <f@230.to> | 2013-07-19 10:56:31 +0300 |
---|---|---|
committer | Filipp Lepalaan <f@230.to> | 2013-07-19 10:56:31 +0300 |
commit | ce8ada78e4b285f51ae83ad78990b16582588a36 (patch) | |
tree | 00bdd3126aaf3a7ad5b65e4653ea93f1bafee5d2 /gsxws/objectify.py | |
parent | 151b3893395bae90f5795b50e27812d30403b91e (diff) | |
download | py-gsxws-ce8ada78e4b285f51ae83ad78990b16582588a36.tar.gz py-gsxws-ce8ada78e4b285f51ae83ad78990b16582588a36.tar.bz2 py-gsxws-ce8ada78e4b285f51ae83ad78990b16582588a36.zip |
Added Product.is_unlocked()
Diffstat (limited to 'gsxws/objectify.py')
-rw-r--r-- | gsxws/objectify.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gsxws/objectify.py b/gsxws/objectify.py index 96b7c6e..43d6426 100644 --- a/gsxws/objectify.py +++ b/gsxws/objectify.py @@ -48,7 +48,7 @@ def gsx_date(value): def gsx_boolean(value): - return value == 'Y' + return value == 'Y' or value == 'true' class GsxPriceElement(): |