diff options
Diffstat (limited to 'python/samba/ndr.py')
-rw-r--r-- | python/samba/ndr.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/samba/ndr.py b/python/samba/ndr.py index d84e9d6f9e0..8879caf59a5 100644 --- a/python/samba/ndr.py +++ b/python/samba/ndr.py @@ -83,7 +83,7 @@ def ndr_unpack_in(object, data, bigendian=False, ndr64=False, allow_remaining=Fa if ndr_unpack_in_fn is None: raise TypeError("%r is not a NDR function object" % object) ndr_unpack_in_fn(data, bigendian=bigendian, ndr64=ndr64, - allow_remaining=allow_remaining) + allow_remaining=allow_remaining) return object @@ -122,7 +122,7 @@ def ndr_unpack_out(object, data, bigendian=False, ndr64=False, allow_remaining=F if ndr_unpack_out_fn is None: raise TypeError("%r is not a NDR function object" % object) ndr_unpack_out_fn(data, bigendian=bigendian, ndr64=ndr64, - allow_remaining=allow_remaining) + allow_remaining=allow_remaining) return object |