Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
bliss
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
489
Issues
489
List
Boards
Labels
Service Desk
Milestones
Jira
Jira
Merge Requests
129
Merge Requests
129
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Bliss
bliss
Commits
c633d029
Commit
c633d029
authored
Mar 02, 2018
by
Matias Guijarro
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
config/settings.py: bug fix: HashSetting .get() needs to use read conversion
parent
df2957a1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
bliss/config/settings.py
bliss/config/settings.py
+2
-2
No files found.
bliss/config/settings.py
View file @
c633d029
...
...
@@ -465,8 +465,8 @@ class HashSetting(object):
def
get
(
self
,
key
,
default
=
None
):
v
=
self
.
raw_get
(
key
)
if
v
is
None
:
if
self
.
_
write
_type_conversion
:
v
=
self
.
_
write
_type_conversion
(
default
)
if
self
.
_
read
_type_conversion
:
v
=
self
.
_
read
_type_conversion
(
default
)
else
:
v
=
default
return
v
...
...
Matias Guijarro
@matias.guijarro
mentioned in issue
#397 (closed)
·
Jun 19, 2018
mentioned in issue
#397 (closed)
mentioned in issue #397
Toggle commit list
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