Show
Ignore:
Timestamp:
05/18/04 16:49:34 (20 years ago)
Author:
jalet
Message:

Big code changes to completely remove the need for "requester" directives,
jsut use "hardware(... your previous requester directive's content ...)"

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/bin/cupspykota

    r1478 r1483  
    2424# 
    2525# $Log$ 
     26# Revision 1.44  2004/05/18 14:48:47  jalet 
     27# Big code changes to completely remove the need for "requester" directives, 
     28# jsut use "hardware(... your previous requester directive's content ...)" 
     29# 
    2630# Revision 1.43  2004/05/17 11:46:05  jalet 
    2731# First try at cupspykota's main loop rewrite 
     
    186190from pykota.storage import PyKotaStorageError 
    187191from pykota.accounter import PyKotaAccounterError 
    188 from pykota.requester import PyKotaRequesterError 
    189192     
    190193class PyKotaPopen4(popen2.Popen4) : 
     
    508511            kotabackend = PyKotaBackend()     
    509512            retcode = kotabackend.mainWork() 
    510         except (PyKotaToolError, PyKotaConfigError, PyKotaStorageError, PyKotaAccounterError, PyKotaRequesterError, AttributeError, KeyError, IndexError, ValueError, TypeError, IOError), msg : 
     513        except (PyKotaToolError, PyKotaConfigError, PyKotaStorageError, PyKotaAccounterError, AttributeError, KeyError, IndexError, ValueError, TypeError, IOError), msg : 
    511514            import traceback 
    512515            mm = [((f.endswith('\n') and f) or (f + '\n')) for f in traceback.format_exception(*sys.exc_info())]