diff options
author | Brett Cannon <brett@python.org> | 2012-04-21 21:15:28 -0400 |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2012-04-21 21:15:28 -0400 |
commit | cb165db3a3ef1cf327b6591a3747fcb21aa37e6e (patch) | |
tree | d91e0e807cffd3754b6d47d953a77fa9475f1544 | |
parent | e69f0df45b709c25ac80617c41bbae16f56870fb (diff) | |
download | cpython-git-cb165db3a3ef1cf327b6591a3747fcb21aa37e6e.tar.gz |
Fix whitespace.
-rw-r--r-- | Lib/imp.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/imp.py b/Lib/imp.py index 74253abcb4..3ab69e56c9 100644 --- a/Lib/imp.py +++ b/Lib/imp.py @@ -194,4 +194,3 @@ def find_module(name, path=None): encoding = tokenize.detect_encoding(file.readline)[0] file = open(file_path, mode, encoding=encoding) return file, file_path, (suffix, mode, type_) - |