Skip to content

Commit

Permalink
add uri in var
Browse files Browse the repository at this point in the history
  • Loading branch information
keryc committed Feb 19, 2021
1 parent 572f609 commit 6ee46ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion agave/lib/mongoengine/model_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def mongo_to_python_type(field, data, field_name: str = ''):
'CA': '/cards/',
'SP': '/service_providers/',
}
return f'{mapper[data[:2]]}{data}'
return f'{mapper[data[:2]]}{data}_uri'
else:
rv = str(data)

Expand Down
2 changes: 1 addition & 1 deletion agave/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.1.2.dev1'
__version__ = '0.1.2.dev2'

0 comments on commit 6ee46ae

Please sign in to comment.