summaryrefslogtreecommitdiff
path: root/coverage/config.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2015-08-20 13:44:11 -0400
committerNed Batchelder <ned@nedbatchelder.com>2015-08-20 13:44:11 -0400
commitd5a89ab843542f88544a0f55900093329ef6b85c (patch)
tree096e088a8193c4d3ecd96755f9f35793d2a0bb76 /coverage/config.py
parent33d7789e8e6c15aae52cf3e36eecbd48f36e248e (diff)
downloadpython-coveragepy-git-d5a89ab843542f88544a0f55900093329ef6b85c.tar.gz
Fix 'filename' to be 'file name' in English.
Diffstat (limited to 'coverage/config.py')
-rw-r--r--coverage/config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/coverage/config.py b/coverage/config.py
index 83eea519..458d4903 100644
--- a/coverage/config.py
+++ b/coverage/config.py
@@ -20,7 +20,7 @@ class HandyConfigParser(configparser.RawConfigParser):
self.section_prefix = section_prefix
def read(self, filename):
- """Read a filename as UTF-8 configuration data."""
+ """Read a file name as UTF-8 configuration data."""
kwargs = {}
if sys.version_info >= (3, 2):
kwargs['encoding'] = "utf-8"