From: Julien Desfossez Date: Tue, 15 Apr 2014 18:28:23 +0000 (-0400) Subject: Fix python: remove weird char at the end of line X-Git-Tag: v1.2.2~9 X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=commitdiff_plain;h=d0f6c52337c832c27cfde06c7e5b58255871d786 Fix python: remove weird char at the end of line There was the character \xc2 at the end of one line that caused an import error on some ubuntu distros. Reported-by: Francis Giraldeau Signed-off-by: Julien Desfossez --- diff --git a/bindings/python/babeltrace.i.in b/bindings/python/babeltrace.i.in index 294177fa..7b796335 100644 --- a/bindings/python/babeltrace.i.in +++ b/bindings/python/babeltrace.i.in @@ -390,7 +390,7 @@ int bt_ctf_event_get_handle_id(const struct bt_ctf_event *event); %pythoncode%{ -# Based on enum bt_clock_type in clock-type.h­ +# Based on enum bt_clock_type in clock-type.h class ClockType: CLOCK_CYCLES = 0 CLOCK_REAL = 1