From 75c9f9ebc069c49f6f3bd0928bd8a9dd2ba18943 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Mon, 17 Aug 2015 16:55:10 -0500 Subject: [PATCH] Fix bug in late-login user stuff. --- tailbone/views/batch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tailbone/views/batch.py b/tailbone/views/batch.py index 64c0a7d5..ff37aad3 100644 --- a/tailbone/views/batch.py +++ b/tailbone/views/batch.py @@ -699,7 +699,7 @@ class FileBatchCrud(BatchCrud): # For new batches, assign current user as creator, save file etc. if self.creating: with Session.no_autoflush: - batch.created_by = self.request.user or self.latelogin_user() + batch.created_by = self.request.user or self.late_login_user() # Expunge batch from session to prevent it from being flushed # during init. This is done as a convenience to views which