This commit is contained in:
Salvo 'LtWorf' Tomaselli
2015-07-14 11:01:35 +02:00
parent 98ac364dc7
commit 73dd14d9dd
10 changed files with 209 additions and 193 deletions

View File

@@ -38,7 +38,7 @@ tests_path = 'test/'
def readfile(fname):
'''Reads a file as string and returns its content'''
fd = open(fname,encoding='utf-8')
fd = open(fname, encoding='utf-8')
expr = fd.read()
fd.close()
return expr