Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
bob
bob.bio.base
Commits
b2df5610
Commit
b2df5610
authored
Feb 09, 2016
by
Manuel Günther
Browse files
Allowed ImportError in database_directories() function
parent
1b0085a9
Changes
1
Hide whitespace changes
Inline
Side-by-side
bob/bio/base/utils/resources.py
View file @
b2df5610
...
...
@@ -220,7 +220,7 @@ def database_directories(strip=['dummy'], replacements = None):
dirs
[
entry_point
.
name
]
=
[
db
.
original_directory
]
if
db
.
annotation_directory
is
not
None
:
dirs
[
entry_point
.
name
].
append
(
db
.
annotation_directory
)
except
(
AttributeError
,
ValueError
):
except
(
AttributeError
,
ValueError
,
ImportError
):
pass
return
dirs
Write
Preview
Supports
Markdown
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