Commit 3fa7ee40 authored by norvell's avatar norvell
Browse files

Unify to double :: in all labels

parent a823365b
Loading
Loading
Loading
Loading
+659 −658

File changed.

Preview size limit exceeded, changes collapsed.

+2 −2
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@ if __name__ == '__main__':
    indir = args.input
    outfile  = args.output
    
    libs = {'apps':'Lib:Apps','lib_com':'Lib:Common','lib_dec':'Lib:Decoder','lib_enc':'Lib:Encoder','lib_rend':'Lib:Renderer','lib_util':'Lib:Utilities','lib_debug':'Lib:Debug'}
    libs = {'apps':'Lib::Apps','lib_com':'Lib::Common','lib_dec':'Lib::Decoder','lib_enc':'Lib::Encoder','lib_rend':'Lib::Renderer','lib_util':'Lib::Utilities','lib_debug':'Lib::Debug'}
    
    filesdict = {'EVS':[],'Framework':[],'Apps':[],'Stereo':[],'ISM':[],'Multichannel':[],'SBA':[],'MASA':[],'Utilities':[],'Renderer':[],'EVSTableROM':[],'IVASTableROM':[]}
    total = 0
@@ -66,7 +66,7 @@ if __name__ == '__main__':
            for file in filesdict[mod]:
                lib = [libs[m] for m in libs if m in file][0]
                
                line = "{};/label ~Status::ToDo ~Type:BASOPFileConversion ~{} ~Module:{}\n".format(file, lib, mod)
                line = "{};/label ~Status::ToDo ~Type::BASOPFileConversion ~{} ~Module::{}\n".format(file, lib, mod)
                total = total + 1
                fout.write(line)