summaryrefslogtreecommitdiffstats
path: root/Lib/dos-8x3/basehttp.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1999-04-08 20:27:54 (GMT)
committerGuido van Rossum <guido@python.org>1999-04-08 20:27:54 (GMT)
commit9a744a9dd771ee8997bdebaf47ff999b5adc9733 (patch)
tree5060172f273b17409371c9ad1441b2a8bbc315be /Lib/dos-8x3/basehttp.py
parent6d0de99d8da806798ce0b896159bd07fce71c0dc (diff)
downloadcpython-9a744a9dd771ee8997bdebaf47ff999b5adc9733.zip
cpython-9a744a9dd771ee8997bdebaf47ff999b5adc9733.tar.gz
cpython-9a744a9dd771ee8997bdebaf47ff999b5adc9733.tar.bz2
The usual
Diffstat (limited to 'Lib/dos-8x3/basehttp.py')
-rwxr-xr-xLib/dos-8x3/basehttp.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/dos-8x3/basehttp.py b/Lib/dos-8x3/basehttp.py
index 7c8975d..4c9645d 100755
--- a/Lib/dos-8x3/basehttp.py
+++ b/Lib/dos-8x3/basehttp.py
@@ -252,7 +252,7 @@ class BaseHTTPRequestHandler(SocketServer.StreamRequestHandler):
self.headers = self.MessageClass(self.rfile, 0)
mname = 'do_' + command
if not hasattr(self, mname):
- self.send_error(501, "Unsupported method (%s)" % `mname`)
+ self.send_error(501, "Unsupported method (%s)" % `command`)
return
method = getattr(self, mname)
method()