diff options
| author | Jeremy Hylton <jeremy@alum.mit.edu> | 2002-06-04 21:00:20 +0000 |
|---|---|---|
| committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2002-06-04 21:00:20 +0000 |
| commit | 6ff1777df1ce884b828e5e6bcf6a562512d5d543 (patch) | |
| tree | ae2d6b1b7adeba1aa11902e0ea0660e3672f7227 /command/build_py.py | |
| parent | 58596909c7673897cc8563e233ba6b71547a3ab4 (diff) | |
| download | python-setuptools-git-6ff1777df1ce884b828e5e6bcf6a562512d5d543.tar.gz | |
Make None return explicit
Diffstat (limited to 'command/build_py.py')
| -rw-r--r-- | command/build_py.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/command/build_py.py b/command/build_py.py index 388d3cbc..0ab72c08 100644 --- a/command/build_py.py +++ b/command/build_py.py @@ -181,7 +181,7 @@ class build_py (Command): # Either not in a package at all (__init__.py not expected), or # __init__.py doesn't exist -- so don't return the filename. - return + return None # check_package () |
