Merge "Issue #1257: pypies add base group if not specified" into development

Former-commit-id: 018c00f373 [formerly 2b5236635a] [formerly 018c00f373 [formerly 2b5236635a] [formerly efbadb9c27 [formerly 396eb56b51bf75ebe68e0a78289c132de3f91419]]]
Former-commit-id: efbadb9c27
Former-commit-id: 5329e6f11f [formerly 7e9d082e29]
Former-commit-id: c51420fecb
This commit is contained in:
Ron Anderson 2012-10-15 18:32:12 -05:00 committed by Gerrit Code Review
commit 6d7721f9c8

View file

@ -662,7 +662,10 @@ class H5pyDataStore(IDataStore.IDataStore):
grp = f['/']
else:
try:
grp = f[name]
group=name
if not group.startswith('/'):
group = '/' + group
grp = f[group]
except:
raise StorageException("No group " + name + " found")