Skip to content

Commit 554fc71

Browse files
committed
Fixed parenthesis issue and uncommented logging console.
1 parent b15fe43 commit 554fc71

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

datajoint/external.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -353,8 +353,9 @@ def delete(self, *, delete_external_files=None, limit=None, display_progress=Tru
353353
except Exception as error:
354354
# adding row back into table after failed delete
355355
self.insert1(row[0])
356-
error_list.append((uuid, external_path, str(error) if errors_as_string else error))))
357-
return error_list
356+
error_list.append((uuid, external_path,
357+
str(error) if errors_as_string else error))
358+
return error_list
358359

359360

360361
class ExternalMapping(Mapping):

tests/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
__author__ = 'Edgar Walker, Fabian Sinz, Dimitri Yatsenko, Raphael Guzman'
2121

2222
# turn on verbose logging
23-
#logging.basicConfig(level=logging.DEBUG)
23+
logging.basicConfig(level=logging.DEBUG)
2424

2525
__all__ = ['__author__', 'PREFIX', 'CONN_INFO']
2626

0 commit comments

Comments
 (0)