fix bad path of Timestamp device

This commit is contained in:
2025-04-24 14:05:13 +02:00
parent 6a89ec8383
commit b96a7dec1c
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ devices = {
description='main SEC node', unit='',
prefix=environ.get('SE_PREFIX', ''), auto_create=True, service='main',
),
'timestamp': device('nicos_linse.common.lab.Timestamp', description='time, a dummy detector'),
'timestamp': device('nicos_sinq.frappy_sinq.lab.Timestamp', description='time, a dummy detector'),
}
startupcode = '''

View File

@ -2,7 +2,7 @@ description = 'timestamp dummy detector for offline measurements'
group = 'optional'
devices = {
'timestamp': device('nicos_linse.common.lab.Timestamp', description='time, a dummy detector'),
'timestamp': device('nicos_sinq.frappy_sinq.lab.Timestamp', description='time, a dummy detector'),
}
startupcode = 'SetDetectors(timestamp)'