diff options
Diffstat (limited to 'python')
| -rw-r--r-- | python/function.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/python/function.py b/python/function.py index 65aaac2d..bb4f817a 100644 --- a/python/function.py +++ b/python/function.py @@ -880,7 +880,10 @@ class Variable(object): self._function.create_user_var(self, self._type, value) self._name = value else: + # Name will be reassigned by analysis on the next analysis update + # This Variable object is will not be updated self._function.create_user_var(self, self._type, "") + self._name = None @property def type(self): |
