From 0490ca39ac874af1b2a33fe7eacaef4b61886bae Mon Sep 17 00:00:00 2001 From: Craig Blaszczyk Date: Fri, 22 Jul 2011 12:00:58 +0100 Subject: [PATCH] add version codes into __all__ --- djangorestframework/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/djangorestframework/__init__.py b/djangorestframework/__init__.py index 2b777e59c..83ca204b7 100644 --- a/djangorestframework/__init__.py +++ b/djangorestframework/__init__.py @@ -8,7 +8,7 @@ from django.utils.importlib import import_module import imp -__all__ = ('autodiscover','site') +__all__ = ('autodiscover','site', '__version__', 'VERSION') api = DjangoRestFrameworkSite()