Skip to content

Commit efd2abf

Browse files
author
Chris Turner
committed
datajoint/admin.py: adjust order_by parsing note
1 parent 625823a commit efd2abf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

datajoint/admin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def kill(restriction=None, connection=None, order_by=None): # pragma: no cover
4040
connection = conn()
4141

4242
if order_by is not None and not isinstance(order_by, str):
43-
order_by = ','.join(order_by) # c.f. Fetch.fetch() order_by
43+
order_by = ','.join(order_by) # cf. Fetch.fetch() order_by
4444

4545
query = 'SELECT * FROM information_schema.processlist WHERE id <> CONNECTION_ID()' + (
4646
"" if restriction is None else ' AND (%s)' % restriction) + (

0 commit comments

Comments
 (0)