Skip to content

Commit

Permalink
Make config* more smart in automatically identifying the xml file
Browse files Browse the repository at this point in the history
  • Loading branch information
srevinsaju committed Jan 11, 2020
1 parent dfe4ebc commit cf6fa12
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion tools2/config_en.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import os
files_list = os.listdir()
for i in file_list:
for i in files_list:
if i.endswith('.xml'):
input_xml_file_name = i
break
Expand Down
2 changes: 1 addition & 1 deletion tools2/config_en_simple.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import os
files_list = os.listdir()
for i in file_list:
for i in files_list:
if i.endswith('.xml'):
input_xml_file_name = i
break
Expand Down
2 changes: 1 addition & 1 deletion tools2/config_es.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import os
files_list = os.listdir()
for i in file_list:
for i in files_list:
if i.endswith('.xml'):
input_xml_file_name = i
break
Expand Down
2 changes: 1 addition & 1 deletion tools2/config_fr.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import os
files_list = os.listdir()
for i in file_list:
for i in files_list:
if i.endswith('.xml'):
input_xml_file_name = i
break
Expand Down
2 changes: 1 addition & 1 deletion tools2/config_gn.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import os
files_list = os.listdir()
for i in file_list:
for i in files_list:
if i.endswith('.xml'):
input_xml_file_name = i
break
Expand Down
2 changes: 1 addition & 1 deletion tools2/config_hi.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import os
files_list = os.listdir()
for i in file_list:
for i in files_list:
if i.endswith('.xml'):
input_xml_file_name = i
break
Expand Down
2 changes: 1 addition & 1 deletion tools2/config_pl.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import os
files_list = os.listdir()
for i in file_list:
for i in files_list:
if i.endswith('.xml'):
input_xml_file_name = i
break
Expand Down
2 changes: 1 addition & 1 deletion tools2/config_qu.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import os
files_list = os.listdir()
for i in file_list:
for i in files_list:
if i.endswith('.xml'):
input_xml_file_name = i
break
Expand Down
2 changes: 1 addition & 1 deletion tools2/config_rw.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import os
files_list = os.listdir()
for i in file_list:
for i in files_list:
if i.endswith('.xml'):
input_xml_file_name = i
break
Expand Down

0 comments on commit cf6fa12

Please sign in to comment.