提交 3c3e5dac authored 作者: Olivier Delalleau's avatar Olivier Delalleau

Fixed small typo

上级 0db94f3b
...@@ -145,12 +145,12 @@ class SharedVariable(Variable): ...@@ -145,12 +145,12 @@ class SharedVariable(Variable):
def _value_get(self): def _value_get(self):
raise Exception("sharedvar.value does not exist anymore. Use " raise Exception("sharedvar.value does not exist anymore. Use "
"sharedvar.get_value() or sharedvar.get_value()" "sharedvar.get_value() or sharedvar.set_value()"
" instead.") " instead.")
def _value_set(self, new_value): def _value_set(self, new_value):
raise Exception("sharedvar.value does not exist anymore. Use " raise Exception("sharedvar.value does not exist anymore. Use "
"sharedvar.get_value() or sharedvar.get_value()" "sharedvar.get_value() or sharedvar.set_value()"
" instead.") " instead.")
# We keep this just to raise an error # We keep this just to raise an error
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论