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-Url: http://drtracing.org/?a=commitdiff_plain;h=8a2cd19ad5ea917359494c45da67607f06c50e22;p=deliverable%2Fbabeltrace.git 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 5f87a6ddf..b1da1c605 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