summaryrefslogtreecommitdiff
path: root/kconfiglib.py
diff options
context:
space:
mode:
Diffstat (limited to 'kconfiglib.py')
-rw-r--r--kconfiglib.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/kconfiglib.py b/kconfiglib.py
index 2eecc3b..7871651 100644
--- a/kconfiglib.py
+++ b/kconfiglib.py
@@ -3211,7 +3211,7 @@ class _FileFeed(object):
def __init__(self, filename):
self.filename = _clean_up_path(filename)
- with open(filename, "r") as f:
+ with open(filename) as f:
# No interleaving of I/O and processing yet. Don't know if it would
# help.
self.lines = f.readlines()