diff options
| author | James Socol <james@mozilla.com> | 2011-08-25 12:24:05 -0400 |
|---|---|---|
| committer | James Socol <james@mozilla.com> | 2011-08-25 12:24:05 -0400 |
| commit | 005f2427733d64f54f4c0cd9034ed7fd5055bd98 (patch) | |
| tree | 73ea802ce351e24911fe4b803cdd63e2c1771bbb /statsd | |
| parent | 91f17d5e885771bce7c781f843859494c8b298ed (diff) | |
| download | pystatsd-005f2427733d64f54f4c0cd9034ed7fd5055bd98.tar.gz | |
VERSION shouldn't be in __all__
Diffstat (limited to 'statsd')
| -rw-r--r-- | statsd/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/statsd/__init__.py b/statsd/__init__.py index 4341b93..3bcf499 100644 --- a/statsd/__init__.py +++ b/statsd/__init__.py @@ -6,7 +6,7 @@ except ImportError: from client import StatsClient -__all__ = ['StatsClient', 'statsd', 'VERSION'] +__all__ = ['StatsClient', 'statsd'] VERSION = (0, 2, 0) __version__ = '.'.join(map(str, VERSION)) |
