From bc0230be1d3d439fd5219a2123d4195b178870bc Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 19 Jan 2011 10:31:28 +1100 Subject: pygensec: remove special case handling for None for buffers always returning a buffer makes life easier for callers Pair-Programmed-With: Andrew Bartlett --- source4/scripting/python/samba/tests/gensec.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/scripting/python') diff --git a/source4/scripting/python/samba/tests/gensec.py b/source4/scripting/python/samba/tests/gensec.py index f1cc44bca7..ddca0df980 100644 --- a/source4/scripting/python/samba/tests/gensec.py +++ b/source4/scripting/python/samba/tests/gensec.py @@ -67,7 +67,7 @@ class GensecTests(samba.tests.TestCase): client_finished = False server_finished = False - server_to_client = None + server_to_client = "" """Run the actual call loop""" while client_finished == False and server_finished == False: -- cgit