Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit 3699934a authored by augustin_s's avatar augustin_s :snake:
Browse files

handle case where PV returns None

parent b6683a20
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@ from slic.utils import as_shortcut
class PVStringAdjustable(PVAdjustable):
def get_current_value(self):
return self.pvs.readback.get(as_string=True).strip()
return str(self.pvs.readback.get(as_string=True)).strip()
......
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