Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
django-pipeline
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
django-pipeline
Commits
ae1dacd8
Commit
ae1dacd8
authored
Aug 28, 2012
by
Timothée Peignier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix manifest code. close #143
parent
07ba8d66
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
pipeline/manifest.py
+2
-2
No files found.
pipeline/manifest.py
View file @
ae1dacd8
try
:
from
staticfiles.finders
import
DefaultStorageFinder
except
ImportError
:
from
django.contrib.staticfiles.
storage
import
DefaultStorageFinder
# noqa
from
django.contrib.staticfiles.
finders
import
DefaultStorageFinder
# noqa
from
django.conf
import
settings
...
...
@@ -38,5 +38,5 @@ class PipelineManifest(Manifest):
for
package
in
self
.
packages
:
for
path
in
self
.
packager
.
compile
(
package
.
paths
):
yield
str
(
self
.
packager
.
individual_url
(
path
))
for
path
in
self
.
finder
.
list
(
ignore_patterns
):
for
path
,
_
in
self
.
finder
.
list
(
ignore_patterns
):
yield
str
(
self
.
packager
.
individual_url
(
path
))
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment