From: Jérémie Galarneau Date: Mon, 14 Jan 2013 16:45:49 +0000 (+0000) Subject: Extras: Fixed inconsistent use of space and tabs in lttng.i.in. X-Git-Url: http://git.efficios.com/?p=lttng-tools.git;a=commitdiff_plain;h=9c2fd06dc38a3bc69911b6a4b0ba37cc00918882 Extras: Fixed inconsistent use of space and tabs in lttng.i.in. 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 --- 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) """