summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--python/ovs/db/idl.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/python/ovs/db/idl.py b/python/ovs/db/idl.py
index 02fc4c736..035191fc5 100644
--- a/python/ovs/db/idl.py
+++ b/python/ovs/db/idl.py
@@ -132,8 +132,10 @@ class ConditionState(object):
def reset(self):
"""Reset a requested condition change back to new"""
- if self._req_cond is not None and self._new_cond is None:
- self._new_cond, self._req_cond = (self._req_cond, None)
+ if self._req_cond is not None:
+ if self._new_cond is None:
+ self._new_cond = self._req_cond
+ self._req_cond = None
class Idl(object):