Skip to content
Snippets Groups Projects
Commit 4a4fb12f authored by Adriaan Renting's avatar Adriaan Renting
Browse files

Task #8432: changed code to support Linux hidden files

parent 042dd695
No related branches found
No related tags found
No related merge requests found
......@@ -20,7 +20,7 @@ def main():
infiles = os.listdir("txt")
results = []
for infile in infiles:
if infile.startswith("old"):
if infile.startswith("old") or infile.startswith("."):
continue # pre 2.6 files that no longer have valid syntax
name, ext = os.path.splitext(infile)
outfile = name + ".xml"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment