From 9c2fd06dc38a3bc69911b6a4b0ba37cc00918882 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Galarneau?= Date: Mon, 14 Jan 2013 16:45:49 +0000 Subject: [PATCH] Extras: Fixed inconsistent use of space and tabs in lttng.i.in. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Python 3 does not allow mixing spaces and tabs. This eliminates the error encountered when importing the lttng module in a Python 3 interpreter. Signed-off-by: Jérémie Galarneau Signed-off-by: David Goulet --- extras/bindings/swig/python/lttng.i.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extras/bindings/swig/python/lttng.i.in b/extras/bindings/swig/python/lttng.i.in index 244bc2282..c947ce3dd 100644 --- a/extras/bindings/swig/python/lttng.i.in +++ b/extras/bindings/swig/python/lttng.i.in @@ -715,7 +715,7 @@ def calibrate(handle, calibrate): %pythoncode %{ class Handle: - """ + """ Manages a handle. Takes two arguments: (str session_name, Domain domain) """ -- 2.34.1