Commit fe0bcebd authored by Pablo Armingol's avatar Pablo Armingol
Browse files

Correct the delete error message

parent 07276892
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -28,7 +28,7 @@ def _set(resource : Tuple[str, Any]):
    return ACTION_MSG_SET.format(*tuple(map(str, resource)))

def _delete(resource : Tuple[str, Any]):
    return ACTION_MSG_SET.format(*tuple(map(str, resource)))
    return ACTION_MSG_DELETE.format(*tuple(map(str, resource)))

def _subscribe(subscription : Tuple[str, float, float]):
    return ACTION_MSG_SUBSCRIBE.format(*tuple(map(str, subscription)))