lib: rename all `*_STATUS_OVERFLOW` -> `*_STATUS_OVERFLOW_ERROR`
[babeltrace.git] / src / bindings / python / bt2 / bt2 / utils.py
index abb9accfdee8b73ea3497737e99d96ff2c4f0590..9c88417577306102a0689cf8d9fd27cc04502463 100644 (file)
@@ -151,7 +151,7 @@ def _handle_func_status(status, msg=None):
             raise bt2.TryAgain
         else:
             raise bt2.TryAgain(msg)
-    elif status == native_bt.__BT_FUNC_STATUS_OVERFLOW:
+    elif status == native_bt.__BT_FUNC_STATUS_OVERFLOW_ERROR:
         if msg is None:
             raise bt2.OverflowError
         else:
This page took 0.023384 seconds and 4 git commands to generate.