mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Fix nit.
This commit is contained in:
parent
c90d02c917
commit
2df393cc51
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@ def _find_module(fullname, path=None):
|
|||
pass
|
||||
else:
|
||||
file = None
|
||||
descr = os.path.splitext(filename), None, imp.PY_SOURCE
|
||||
descr = os.path.splitext(filename)[1], None, imp.PY_SOURCE
|
||||
return file, filename, descr
|
||||
|
||||
class EditorWindow(object):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue