Advertisement
zcutlip

bowcaster_config_parse.py

Jul 30th, 2013
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.36 KB | None | 0 0
  1. #!/usr/bin/env python
  2. import sys
  3.  
  4. from bowcaster.development.overflowconfig import OverflowConfigParser
  5. from bowcaster.common.support import Logging
  6.  
  7. def main(configfile):
  8.     logger=Logging()
  9.     logger.LOG_DEBUG("Config file: %s" % configfile)
  10.     buffer_overflow=OverflowConfigParser(configfile)
  11.    
  12.  
  13. if __name__=="__main__":
  14.     main(sys.argv[1]])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement