Unverified Commit cd0b034c authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

adjust regex for removed styles to correctly handle command styles

parent b3060bc4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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():