Commit 89633c30 authored by Jacob Kaplan-Moss's avatar Jacob Kaplan-Moss
Browse files

Fixed a small oversight in [8750]; thanks for the sharp eyes, Warren. Fixes #8616.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@8812 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 72394298
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -113,12 +113,12 @@ class SessionStore(SessionBase):
        try:
            output_file_fd, output_file_name = tempfile.mkstemp(dir=dir,
                prefix=prefix + '_out_')
            renamed = False
            try:
                try:
                    os.write(output_file_fd, self.encode(session_data))
                finally:
                    os.close(output_file_fd)
                renamed = False
                os.rename(output_file_name, session_file_name)
                renamed = True
            finally: