diff options
| author | Chris McDonough <chrism@agendaless.com> | 2009-11-27 08:28:45 +0000 |
|---|---|---|
| committer | Chris McDonough <chrism@agendaless.com> | 2009-11-27 08:28:45 +0000 |
| commit | 45d08c56ea330583a472b4d2808262a634fa99f1 (patch) | |
| tree | dab7e4abe9439cc05886bf2dac688995b3ead1b9 /repoze/bfg/path.py | |
| parent | 82c9a232036b696d38b64c95787f0812d777e112 (diff) | |
| download | pyramid-45d08c56ea330583a472b4d2808262a634fa99f1.tar.gz pyramid-45d08c56ea330583a472b4d2808262a634fa99f1.tar.bz2 pyramid-45d08c56ea330583a472b4d2808262a634fa99f1.zip | |
Coverage.
Remove set_security_policies configurator API method.
Diffstat (limited to 'repoze/bfg/path.py')
| -rw-r--r-- | repoze/bfg/path.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/repoze/bfg/path.py b/repoze/bfg/path.py index b4ff40494..2c1c0f4e3 100644 --- a/repoze/bfg/path.py +++ b/repoze/bfg/path.py @@ -22,7 +22,7 @@ def package_name(pkg_or_module): function is passed a package, return the dotted Python package name of the package itself.""" if pkg_or_module is None: - return '__main___' + return '__main__' pkg_filename = pkg_or_module.__file__ pkg_name = pkg_or_module.__name__ splitted = os.path.split(pkg_filename) |
