Skip to content

Commit 04d6d23

Browse files
fix typo from previous commit
1 parent 71623bb commit 04d6d23

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

datajoint/jobs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def reserve(self, table_name, key):
7777
key=key,
7878
user=self._user)
7979
try:
80-
with config(enable_pyton_native_blobs=True):
80+
with config(enable_python_native_blobs=True):
8181
self.insert1(job, ignore_extra_fields=True)
8282
except DuplicateError:
8383
return False
@@ -103,7 +103,7 @@ def error(self, table_name, key, error_message, error_stack=None):
103103
"""
104104
if len(error_message) > ERROR_MESSAGE_LENGTH:
105105
error_message = error_message[:ERROR_MESSAGE_LENGTH-len(TRUNCATION_APPENDIX)] + TRUNCATION_APPENDIX
106-
with config(enable_pyton_native_blobs=True):
106+
with config(enable_python_native_blobs=True):
107107
self.insert1(
108108
dict(
109109
table_name=table_name,

0 commit comments

Comments
 (0)