diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2014-05-05 03:36:41 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2014-05-05 03:36:41 -0400 |
commit | 7932954f60b7667c54b7bb9463a510bfd01f5aa0 (patch) | |
tree | 1f4e9d96420347e1dddef0c892cf33a7bad0b2db | |
parent | a92a8c9aaf22e3bcb705924e92962523ccb6cd5d (diff) | |
download | external_python_setuptools-7932954f60b7667c54b7bb9463a510bfd01f5aa0.tar.gz external_python_setuptools-7932954f60b7667c54b7bb9463a510bfd01f5aa0.tar.bz2 external_python_setuptools-7932954f60b7667c54b7bb9463a510bfd01f5aa0.zip |
Fix spacing in __all__
-rw-r--r-- | pkg_resources.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/pkg_resources.py b/pkg_resources.py index 972a4425..6a53eb52 100644 --- a/pkg_resources.py +++ b/pkg_resources.py @@ -147,7 +147,8 @@ def get_supported_platform(): __all__ = [ # Basic resource access and distribution/entry point discovery 'require', 'run_script', 'get_provider', 'get_distribution', - 'load_entry_point', 'get_entry_map', 'get_entry_info', 'iter_entry_points', + 'load_entry_point', 'get_entry_map', 'get_entry_info', + 'iter_entry_points', 'resource_string', 'resource_stream', 'resource_filename', 'resource_listdir', 'resource_exists', 'resource_isdir', @@ -161,8 +162,8 @@ __all__ = [ 'Distribution', 'Requirement', 'EntryPoint', # Exceptions - 'ResolutionError','VersionConflict','DistributionNotFound','UnknownExtra', - 'ExtractionError', + 'ResolutionError', 'VersionConflict', 'DistributionNotFound', + 'UnknownExtra', 'ExtractionError', # Parsing functions and string utilities 'parse_requirements', 'parse_version', 'safe_name', 'safe_version', |