Added worklist of folders

This commit is contained in:
2018-02-09 21:34:01 +01:00
parent cf798226a2
commit cb8f1cbba9
6 changed files with 23 additions and 5 deletions
+2 -2
View File
@@ -11,7 +11,7 @@ import string
#Creates a list of elements per line in file,
#then adding this list as a single element in a global tuple
def parseline(lines):
tupline = [];
tupline = []
word = [w for w in lines.split()]
for w in word:
if w in hdr_keywords:
@@ -22,7 +22,7 @@ def parseline(lines):
def parseparsed(tup):
global multilinecomment
parsedline = '';
parsedline = ''
if len(tup)>0:
if tup[0] == ELEMENT_TYPE_COMMENT_START:
if tup[-1] == ELEMENT_TYPE_COMMENT_END: