We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edea708 commit 306f3fdCopy full SHA for 306f3fd
apstools/migration/spec_config.py
@@ -21,7 +21,8 @@ class SpecDeviceBase(object):
21
def __init__(self, config_text):
22
"""parse the line from the SPEC config file"""
23
# VM_EPICS_M1 = 9idcLAX:m58:c0: 8
24
- self.name, args = config_text.split("=")
+ nm, args = config_text.split("=")
25
+ self.name = nm.strip()
26
prefix, num_channels = args.split()
27
self.prefix = prefix
28
self.index = None
0 commit comments