removed an extraneous whitespace

This commit is contained in:
JKesMc9tqIQe9M
2014-11-08 10:08:34 -05:00
parent 47c5cd0d5c
commit efe7884167

View File

@@ -5,7 +5,7 @@ import sys, re, operator, string
# The functions
#
def read_file(path_to_file, func):
with open(path_to_file) as f:
with open(path_to_file) as f:
data = f.read()
func(data, normalize)