python/samba/tests: PY3 iterable has no sort method
authorNoel Power <noel.power@suse.com>
Wed, 26 Sep 2018 16:22:16 +0000 (17:22 +0100)
committerAndrew Bartlett <abartlet@samba.org>
Tue, 23 Oct 2018 03:50:24 +0000 (05:50 +0200)
commitff3f5411fa15080c5f0c6b9f3112ab1e0e58525a
treea70b3491914e24fa2877a5435dc75d23801441b2
parentf5f8676b630e595532e188a559448478c0702ec7
python/samba/tests: PY3 iterable has no sort method

map in python3 returns an iterable, in python2 it returned
a list. Iterable has no sort method, use sort function instead or
construct a list from the iterable so you can use list.sort

Signed-off-by: Noel Power <noel.power@suse.com>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
python/samba/tests/docs.py