Skip to content

Commit

Permalink
merging PR Chaosthebot#455: FIX ERROR PAGES WITH THIS ONE SIMPLE TRICK
Browse files Browse the repository at this point in the history
Chaosthebot#455: FIX ERROR PAGES WITH THIS ONE SIMPLE TRICK

Description:
This fixes the display of the error code in Chaosthebot#439 - the previous page worked on Python 3.4 (installed by default by Vagrant until Chaosthebot#454), but the way error codes work for SimpleHTTPRequestListener changed in Python 3.5.

:ok_woman: PR passed with a vote of 16 for and 0 against, a weighted total of 15.5 and a threshold of 6.5, and a current meritocracy review.

Vote record:
@Ayyko: 1
@Leigende: 1
@MUCHZER: 1
@Moussto: 1
@PlasmaPower: 1
@Smittyvb: 1
@Swizz: 1
@andrewda: 1
@ccolic: 1
@eukaryote31: 1
@ike709: 1
@md678685: 1
@phil-r: 1
@qgustavor: 1
@rhengles: 1
@rudehn: 1
  • Loading branch information
mdcfe authored and chaosbot committed Jun 1, 2017
1 parent 2596dd8 commit 9f9c1b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/error.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta charset="utf-8">
</head>
<body>
<p id="code">%(code)s<p>
<p id="code">%(code)d<p>
<p id="message">%(message)s</p>
<p id="explain">%(explain)s</p>
<p id="link"><a href="/">Return to main page</a></p>
Expand Down

0 comments on commit 9f9c1b0

Please sign in to comment.