Skip to content
Snippets Groups Projects
Commit fe0bcebd authored by Pablo Armingol's avatar Pablo Armingol
Browse files

Correct the delete error message

parent 07276892
No related branches found
No related tags found
2 merge requests!142Release TeraFlowSDN 2.1,!37Revision of OpenConfigDriver
......@@ -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)))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment