Ignore:
Timestamp:
08/19/09 10:13:06 (15 years ago)
Author:
bas
Message:

pxe_global.py:

  • moved some more functions to the library the exception Class

src/pxeconfigd.py:

  • just import the server side as module
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/pxe_global.py.in

    r168 r170  
    1010import os
    1111import ConfigParser
     12
     13class PxeConfig(Exception):
     14       def __init__(self, msg=''):
     15               self.msg = msg
     16               Exception.__init__(self, msg)
     17
     18       def __repr__(self):
     19               return self.msg
    1220
    1321def ReadConfig():
Note: See TracChangeset for help on using the changeset viewer.