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
a3ee525c
Commit
a3ee525c
authored
Nov 01, 2013
by
Stanley Yeo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed issue #271
parent
6088946b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
pipeline/storage.py
+2
-2
No files found.
pipeline/storage.py
View file @
a3ee525c
...
...
@@ -92,7 +92,7 @@ class BaseFinderStorage(PipelineStorage):
return
exists
def
listdir
(
self
,
path
):
for
finder
in
finders
.
get_finders
():
for
finder
in
self
.
finders
.
get_finders
():
for
storage
in
finder
.
storages
.
values
():
try
:
return
storage
.
listdir
(
path
)
...
...
@@ -116,7 +116,7 @@ class BaseFinderStorage(PipelineStorage):
return
None
def
find_storage
(
self
,
name
):
for
finder
in
finders
.
get_finders
():
for
finder
in
self
.
finders
.
get_finders
():
for
path
,
storage
in
finder
.
list
([]):
prefix
=
getattr
(
storage
,
'prefix'
,
None
)
matched_path
=
self
.
match_location
(
name
,
path
,
prefix
)
...
...
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