mirror of
https://github.com/Schrolli91/BOSWatch.git
synced 2026-04-04 22:17:24 +00:00
Add paramter to change between main-ric and sub-ric
This commit is contained in:
parent
23e7406f48
commit
6912c59785
2 changed files with 8 additions and 0 deletions
|
|
@ -110,6 +110,9 @@ def getDescription(typ, data):
|
|||
elif typ == "ZVEI":
|
||||
resultStr = zveiDescribtionList[data]
|
||||
elif typ == "POC":
|
||||
if globalVars.config.getint("POC", "onlysubric"):
|
||||
resultStr = ricDescribtionList[data] # only SubRIC
|
||||
else:
|
||||
resultStr = ricDescribtionList[data[:-1]] # MainRIC
|
||||
resultStr += " " + ricDescribtionList[data] # SubRIC
|
||||
else:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue