adjust regex for removed styles to correctly handle command styles

This commit is contained in:
Axel Kohlmeyer
2020-07-09 20:46:31 -04:00
parent b3060bc48e
commit cd0b034cab

View File

@ -60,7 +60,7 @@ kokkos = re.compile("(.+)/kk$")
kokkos_skip = re.compile("(.+)/kk/(host|device)$")
omp = re.compile("(.+)/omp$")
opt = re.compile("(.+)/opt$")
removed = re.compile("(.+)Deprecated$")
removed = re.compile("(.*)Deprecated$")
def register_style(list,style,info):
if style in list.keys():