summaryrefslogtreecommitdiff
path: root/scss/legacy.py
diff options
context:
space:
mode:
authorEevee (Alex Munroe) <eevee.git@veekun.com>2014-08-27 15:42:12 -0700
committerEevee (Alex Munroe) <eevee.git@veekun.com>2014-08-27 15:42:12 -0700
commit6dad0e9ed0a651c43564ea71d0a16624cc56a2fd (patch)
treee07999bd8fa719daa5097cd2ff8aa4b7bd5da149 /scss/legacy.py
parent52eaeed67473b190e1bae47b3b8373360c2e94b5 (diff)
downloadpyscss-6dad0e9ed0a651c43564ea71d0a16624cc56a2fd.tar.gz
Move bootstrap to an extension.
Diffstat (limited to 'scss/legacy.py')
-rw-r--r--scss/legacy.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/scss/legacy.py b/scss/legacy.py
index d44d71e..90016a2 100644
--- a/scss/legacy.py
+++ b/scss/legacy.py
@@ -8,6 +8,7 @@ import six
from scss.compiler import Compiler
import scss.config as config
from scss.expression import Calculator
+from scss.extension.bootstrap import BootstrapExtension
from scss.extension.core import CoreExtension
from scss.extension.extra import ExtraExtension
from scss.extension.fonts import FontsExtension
@@ -128,6 +129,7 @@ class Scss(object):
ExtraExtension,
FontsExtension,
Namespace(functions=COMPASS_LIBRARY),
+ BootstrapExtension,
],
search_path=search_paths,
live_errors=self.live_errors,