Open GoogleCodeExporter opened 9 years ago
I am not sure if this is the correct fix, but the following patch gets me past
the parse error and finishes loading the wsdl:
--- helpers.py.orig 2014-06-25 13:27:58.000000000 -0700
+++ helpers.py 2014-06-25 14:16:00.000000000 -0700
@@ -190,7 +190,7 @@
if isinstance(v[None], dict):
for i, kk in enumerate(v[None]):
# extend base -keep orginal order-
- if v[None] is not None:
+ if (v[None] is not None) and (kk in v[None]):
elements[k].insert(kk, v[None][kk], i)
del v[None]
else: # "alias", just replace
Original comment by aronrose...@gmail.com
on 25 Jun 2014 at 9:17
Original issue reported on code.google.com by
aronrose...@gmail.com
on 25 Jun 2014 at 8:07