diff --git a/config.py b/config.py index 8fa2692..2cbe003 100644 --- a/config.py +++ b/config.py @@ -17,7 +17,7 @@ conf_files = os.listdir( CONFDIR ) keyword = 'your_keyword' for file in conf_files: if os.path.isfile( os.path.join(CONFDIR,file) ): - if file.endwith('.tsv'): + if file.endswith('.tsv'): eprint( 'Conf file: ', file ) f = open( os.path.join(CONFDIR,file), 'r' ) eprint( file[:-4], f.split() )