summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEevee (Alex Munroe) <eevee.git@veekun.com>2014-08-27 17:44:24 -0700
committerEevee (Alex Munroe) <eevee.git@veekun.com>2014-08-27 17:44:24 -0700
commit3e4820a0ff223021981cc8f794c1d830a30b63b6 (patch)
tree8606b4f970657b6948a497caadaca970a9be826d
parent99a5fbc99e72c04e4ca1e045e6a3e752d391aeea (diff)
downloadpyscss-3e4820a0ff223021981cc8f794c1d830a30b63b6.tar.gz
Oops, fix __all__.
-rw-r--r--scss/expression.py1
-rw-r--r--scss/extension/compass/helpers.py2
-rw-r--r--scss/extension/compass/images.py2
-rw-r--r--scss/extension/compass/sprites.py2
4 files changed, 3 insertions, 4 deletions
diff --git a/scss/expression.py b/scss/expression.py
index 465dfe4..da65595 100644
--- a/scss/expression.py
+++ b/scss/expression.py
@@ -11,7 +11,6 @@ from warnings import warn
import six
-import scss.config as config
from scss.cssdefs import COLOR_NAMES, is_builtin_css_function, _expr_glob_re, _interpolate_re
from scss.errors import SassError, SassEvaluationError, SassParseError
from scss.rule import Namespace
diff --git a/scss/extension/compass/helpers.py b/scss/extension/compass/helpers.py
index 4abb4fe..85c67dd 100644
--- a/scss/extension/compass/helpers.py
+++ b/scss/extension/compass/helpers.py
@@ -21,7 +21,7 @@ import re
log = logging.getLogger(__name__)
ns = helpers_namespace = Namespace()
-__all__ = ['gradients_namespace']
+__all__ = ['helpers_namespace']
FONT_TYPES = {
'woff': 'woff',
diff --git a/scss/extension/compass/images.py b/scss/extension/compass/images.py
index a3721fb..1374c29 100644
--- a/scss/extension/compass/images.py
+++ b/scss/extension/compass/images.py
@@ -27,7 +27,7 @@ except ImportError:
log = logging.getLogger(__name__)
ns = images_namespace = Namespace()
-__all__ = ['gradients_namespace']
+__all__ = ['images_namespace']
def _images_root():
diff --git a/scss/extension/compass/sprites.py b/scss/extension/compass/sprites.py
index d3fea1d..b72a383 100644
--- a/scss/extension/compass/sprites.py
+++ b/scss/extension/compass/sprites.py
@@ -39,7 +39,7 @@ from scss.util import escape, getmtime, make_data_url, make_filename_hash
log = logging.getLogger(__name__)
ns = sprites_namespace = Namespace()
-__all__ = ['gradients_namespace']
+__all__ = ['sprites_namespace']
MAX_SPRITE_MAPS = 4096
KEEP_SPRITE_MAPS = int(MAX_SPRITE_MAPS * 0.8)