python-awips/awips/test/Record.py
Shay Carter 67c5c0b579 add in the /awips and /dynamicsearlize directories
- see if this satisfies the webpage building
2021-06-08 15:41:53 -06:00

12 lines
263 B
Python

import sys
class Record():
def __init__(self, level=0, msg='Test Message'):
self.levelno = level
self.message = msg
self.exc_info = sys.exc_info()
self.exc_text = "TEST"
def getMessage(self):
return self.message