diff options
author | Brett Cannon <brett@python.org> | 2013-01-25 18:57:16 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2013-01-25 18:57:16 (GMT) |
commit | 13252b877016aa5380f4ae36fb024671c2ea77db (patch) | |
tree | b3648fab23f5a4bdb94f58607720c2a66dc918e7 /Lib/site.py | |
parent | 686e880f20a38918c8341aaf6bc14420890d36a2 (diff) | |
download | cpython-13252b877016aa5380f4ae36fb024671c2ea77db.zip cpython-13252b877016aa5380f4ae36fb024671c2ea77db.tar.gz cpython-13252b877016aa5380f4ae36fb024671c2ea77db.tar.bz2 |
Issue #16972: Have site.addpackage() consider known paths even when
none are explicitly passed in.
Diffstat (limited to 'Lib/site.py')
-rw-r--r-- | Lib/site.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/site.py b/Lib/site.py index c4c8ea0..732e1c4 100644 --- a/Lib/site.py +++ b/Lib/site.py @@ -146,7 +146,7 @@ def addpackage(sitedir, name, known_paths): and add that to known_paths, or execute it if it starts with 'import '. """ if known_paths is None: - _init_pathinfo() + known_paths = _init_pathinfo() reset = 1 else: reset = 0 |