--- roundup_cvs.cgi 2005-05-17 14:19:22.103044610 -0400 +++ roundup.cgi 2005-05-17 14:19:22.102044736 -0400 @@ -161,11 +161,11 @@ tracker = roundup.instance.open(tracker_home) from roundup.cgi import client if hasattr(tracker, 'Client'): - client = tracker.Client(tracker, request, os.environ) + c = tracker.Client(tracker, request, os.environ) else: - client = client.Client(tracker, request, os.environ) + c = client.Client(tracker, request, os.environ) try: - client.main() + c.main() except client.Unauthorised: request.send_response(403) request.send_header('Content-Type', 'text/html') @@ -175,7 +175,7 @@ request.send_response(404) request.send_header('Content-Type', 'text/html') request.end_headers() - out.write('Not found: %s'%client.path) + out.write('Not found: %s'%c.path) else: import urllib