Added worklist of folders
This commit is contained in:
+2
-2
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user