Skip to content

Commit

Permalink
fix localized in metadata.base.ModelObject
Browse files Browse the repository at this point in the history
  • Loading branch information
nomed committed Jan 3, 2018
1 parent 57bd930 commit fd1be2d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cubes/metadata/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def localized(self, context):
for obj in getattr(acopy, attr):
obj_context = context.object_localization(attr, obj.name)
list_copy.append(obj.localized(obj_context))
setattr(acopy, attr, list_copy)
setattr(acopy, "_"+attr, object_dict(list_copy))

return acopy

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

setup(
name="cubes",
version='1.1',
version='1.1.1',

# Project uses reStructuredText, so ensure that the docutils get
# installed or upgraded on the target machine
Expand Down

0 comments on commit fd1be2d

Please sign in to comment.