Skip to content

Commit

Permalink
pytables 3.3 bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
jpn-- committed Dec 7, 2016
1 parent 310766a commit 30ca242
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py/dt.py
Original file line number Diff line number Diff line change
Expand Up @@ -3735,7 +3735,7 @@ def to_vault(self, name, value):
vault = self.get_or_create_group(self.h5top, 'vault')
name = name.replace('.','_')
if name not in vault:
vault_bin = self.h5f.createVLArray(vault, name, _tb.ObjectAtom())
vault_bin = self.h5f.create_vlarray(vault, name, _tb.ObjectAtom())
else:
vault_bin = vault._v_children[name]
vault_bin.append(value)
Expand Down

0 comments on commit 30ca242

Please sign in to comment.