Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion django_pyscss/compiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import os
from pathlib import PurePath

from django.utils.six.moves import StringIO
from six.moves import StringIO

from django.conf import settings
from django.contrib.staticfiles.storage import staticfiles_storage
Expand Down
4 changes: 2 additions & 2 deletions tests/test_compressor.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@


APP2_LINK_TAG = """
{% load staticfiles compress %}
{% load static compress %}
{% compress css %}
<link rel="stylesheet" type="text/x-scss" href="{% static 'css/app2.scss' %}">
{% endcompress %}
"""

IMPORT_APP2_STYLE_TAG = """
{% load staticfiles compress %}
{% load static compress %}
{% compress css %}
<style type="text/x-scss">
@import "css/app2.scss";
Expand Down