Fixed quote

Signed-off-by: Rémi BERTHO <remi.bertho@dalan.fr>
This commit is contained in:
Rémi BERTHO 2017-10-21 18:30:13 +02:00
parent cf8abfaa95
commit 3dc083242f
Signed by: dalan
GPG Key ID: EE3B917931C07B64
1 changed files with 3 additions and 3 deletions

View File

@ -105,7 +105,7 @@ def main():
return -1
for input_filename in filenames:
try:
output_file = open((input_ex.subn(args["regex_output"], input_filename))[0], "w", encoding='utf8')
output_file = open((input_ex.subn(args["regex_output"], input_filename))[0], "w", encoding="utf8")
output_files.append(output_file)
except OSError as exception:
print("Error: file not found: " + str(exception))
@ -113,7 +113,7 @@ def main():
use_output_file = True
elif args["output"] is not None:
try:
output_file = open(args["output"], "w", encoding='utf8')
output_file = open(args["output"], "w", encoding="utf8")
output_files.append(output_file)
except OSError as exception:
print("Error: file not found: " + str(exception))
@ -127,7 +127,7 @@ def main():
if is_file:
for filename in filenames:
try:
with open(filename, "r", encoding='utf8') as file:
with open(filename, "r", encoding="utf8") as file:
string = file.read()
except OSError as exception:
print("Error: file not found: " + str(exception))