From 241a94efbec1b65b5e730277d7157fe33f626624 Mon Sep 17 00:00:00 2001 From: Dag Wieers Date: Thu, 26 May 2016 14:13:47 +0200 Subject: Another small type in the documentation --- tests/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/utils.py b/tests/utils.py index b596ff4..6004ed3 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -17,7 +17,7 @@ FILES_DIR = os.path.join(DIR_PATH, 'files') def load_file(filename, encoding='utf-8'): - """Opens filename with encoding and return it's contents.""" + """Opens filename with encoding and return its contents.""" f = codecs.open(os.path.join(FILES_DIR, filename), 'r', encoding) data = f.read() f.close() -- cgit v1.2.1