1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

test/blackbox: py3 compatible print in documentation.

Signed-off-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Douglas Bagnall 2019-03-09 13:49:13 +13:00 committed by Andrew Bartlett
parent 561b654bc5
commit 287abca7c8

View File

@ -32,7 +32,7 @@ class TimeoutHelper():
with Timeout(3):
foobar("Request 1")
except TimeoutHelper.Timeout:
print "Timeout"
print("Timeout")
"""
class Timeout(Exception):