Browse Source

Fix ASSET_SOURCE_PATHS to be list instead of tuple

Tuple causes error when used, must be list.
Steve Steiner 6 years ago
parent
commit
7480ebed46
1 changed files with 2 additions and 2 deletions
  1. 2 2
      assets/Readme.rst

+ 2 - 2
assets/Readme.rst

@@ -96,10 +96,10 @@ theme's top-level directory:
 
 .. code-block:: python
 
-   ASSET_SOURCE_PATHS = (
+   ASSET_SOURCE_PATHS = [
        'vendor/css',
        'scss',
-   )
+       ]
 
 .. _Webassets: https://github.com/miracle2k/webassets
 .. _Webassets documentation: http://webassets.readthedocs.org/en/latest/builtin_filters.html