diff --git a/python/blc_channel.py b/python/blc_channel.py index 8b11fc384798e73042e426b37af0ee74d95e21dd..0ae6c5a651b1d2635310a754b1af54a248543bbf 100644 --- a/python/blc_channel.py +++ b/python/blc_channel.py @@ -12,7 +12,7 @@ class BlcChannel: blc_channel wrapper. """ # Bind blc_channel methods - lib_path = find_library("blc_channel") + lib_path = find_library("blc") lib = CDLL(lib_path) lib.blc_channel_new.restype = c_void_p lib.blc_channel_delete.argtypes = [ c_void_p ] @@ -120,7 +120,7 @@ class BlcChannel: def post_ack_data(self): BlcChannel.lib.blc_channel_post_ack_data(self.channel) - def remove(self): + def remove(self): BlcChannel.lib.blc_channel_remove(self.channel) def __del__(self):