Skip to content

Commit 75dbf6b

Browse files
author
Erik Forsberg
committed
Use """ instead of ''' in comments, or emacs python-mode bails out.
1 parent f016af5 commit 75dbf6b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

roundup/backends/sessions_rdbms.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#$Id: sessions_rdbms.py,v 1.4 2006-04-27 04:03:11 richard Exp $
1+
#$Id: sessions_rdbms.py,v 1.5 2007-04-21 15:27:57 forsberg Exp $
22
"""This module defines a very basic store that's used by the CGI interface
33
to store session and one-time-key information.
44
@@ -77,7 +77,7 @@ def destroy(self, infoid):
7777
self.name, self.db.arg), (infoid,))
7878

7979
def updateTimestamp(self, infoid):
80-
''' don't update every hit - once a minute should be OK '''
80+
""" don't update every hit - once a minute should be OK """
8181
now = time.time()
8282
self.cursor.execute('''update %ss set %s_time=%s where %s_key=%s
8383
and %s_time < %s'''%(self.name, self.name, self.db.arg,

0 commit comments

Comments
 (0)