AttributeError Python 2.3.4: /usr/bin/python
Wed Jan 12 21:33:29 2011
A problem occurred in a Python script. Here is the sequence of function calls leading up to the error, in the order they occurred.
/home/bsccoo5/public_html/kingman/web2/internal/index.cgi
54 import utils
55 utils.wiki = Wiki('kwiki-data')
56 utils.wikiurl = request.rsplit('/', 1)[0] + '/kwiki'
57 date, meta, body = utils.wiki.get_page('front_page_links')
58
utils = <module 'utils' from '/home/bsccoo5/public_html/kingman/web2/internal/utils.pyc'>, utils.wikiurl = None, request = 'http://bsc.coop/kingman/web2/internal/index.cgi', request.rsplit undefined
AttributeError: 'str' object has no attribute 'rsplit'
args = ("'str' object has no attribute 'rsplit'",)
I think I found the issue: http://docs.python.org/library/stdtypes.html#str.rsplit it seems there is a second bit of code that works for python 2.4 but not the version we have running. This is encouraging. I am looking into upgrading python on the bsc.coop server.