Skip to content

Commit dd05f3c

Browse files
fix #876 in 0.12
1 parent e6fa56b commit dd05f3c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

datajoint/fetch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ def __call__(self, *attrs, squeeze=False, download_path='.'):
242242
for name in heading.names)
243243
else: # fetch some attributes, return as tuple
244244
attributes = [a for a in attrs if not is_key(a)]
245-
result = self._expression.proj(*attributes).fetch(squeeze=squeeze, download_path=download_path)
245+
result = self._expression.proj(*attributes).fetch(squeeze=squeeze, download_path=download_path, format="array")
246246
if len(result) != 1:
247247
raise DataJointError('fetch1 should only return one tuple. %d tuples were found' % len(result))
248248
return_values = tuple(

datajoint/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
__version__ = "0.12.8"
1+
__version__ = "0.12.9"
22

33
assert len(__version__) <= 10 # The log table limits version to the 10 characters

0 commit comments

Comments
 (0)