Commit fa12bcb6 authored by Jim Fulton's avatar Jim Fulton

Fixed glaring bug

parent b713f4d1
......@@ -56,8 +56,8 @@
__doc__='''bobo call interface
$Id: Client.py,v 1.2 1997/03/27 18:10:47 jim Exp $'''
__version__='$Revision: 1.2 $'[11:-2]
$Id: Client.py,v 1.3 1997/03/31 20:32:32 jim Exp $'''
__version__='$Revision: 1.3 $'[11:-2]
import regex
from httplib import HTTP
......@@ -101,7 +101,7 @@ type2marshal={
urlregex=regex.compile('http://\([^:/]+\)\(:[0-9]+\)?\(/.+\)', regex.casefold)
NotFound='bci.NotFound'
ServerError='bci.ServerError
ServerError='bci.ServerError'
def ErrorTypes(code):
if code >= 400 and code < 500: return NotFound
......@@ -186,6 +186,9 @@ if __name__ == "__main__": main()
#
# $Log: Client.py,v $
# Revision 1.3 1997/03/31 20:32:32 jim
# Fixed glaring bug
#
# Revision 1.2 1997/03/27 18:10:47 jim
# Fixed bugs.
#
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment