summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndi Albrecht <albrecht.andi@gmail.com>2016-05-28 14:35:05 +0200
committerAndi Albrecht <albrecht.andi@gmail.com>2016-05-28 14:35:05 +0200
commit2f954cb48839ccc775a2922424b4aa6d5074065f (patch)
tree08f0cc4c8756420eaa9f3375a4f79ca1d5acdb27
parentefb6fd4bdb80b985c356bb6eb996e6e25cf63b05 (diff)
parent241a94efbec1b65b5e730277d7157fe33f626624 (diff)
downloadsqlparse-2f954cb48839ccc775a2922424b4aa6d5074065f.tar.gz
Merge pull request #241 from dagwieers/patch-3
Another small type in the documentation
-rw-r--r--tests/utils.py2
1 files changed, 1 insertions, 1 deletions
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()