Skip to content

Commit 5c969b3

Browse files
committed
Fix typo
1 parent 4b61f22 commit 5c969b3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

frontends/roundup.cgi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ except:
222222
out.write(cgitb.breaker())
223223
ts = time.ctime()
224224
out.write('''<p>%s: An error occurred. Please check
225-
the server log for more infomation.</p>'''%ts)
225+
the server log for more information.</p>'''%ts)
226226
print >> sys.stderr, 'EXCEPTION AT', ts
227227
traceback.print_exc(0, sys.stderr)
228228

roundup/scripts/roundup_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ def run_cgi(self):
232232
self.wfile.write(cgitb.breaker())
233233
ts = time.ctime()
234234
self.wfile.write('''<p>%s: An error occurred. Please check
235-
the server log for more infomation.</p>'''%ts)
235+
the server log for more information.</p>'''%ts)
236236
# out to the logfile
237237
print 'EXCEPTION AT', ts
238238
traceback.print_exc()

0 commit comments

Comments
 (0)