From d5a89ab843542f88544a0f55900093329ef6b85c Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Thu, 20 Aug 2015 13:44:11 -0400 Subject: Fix 'filename' to be 'file name' in English. --- coverage/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coverage/config.py') 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" -- cgit v1.2.1