Skip to content
Snippets Groups Projects
Commit 643d05c0 authored by Auke Klazema's avatar Auke Klazema
Browse files

SW-609: Fix Configparser and print issues

parent 72b9246d
No related branches found
No related tags found
No related merge requests found
......@@ -27,13 +27,13 @@ import lofar.messagebus.messagebus as messagebus
import lofar.messagebus.message as message
import threading
from ConfigParser import SafeConfigParser
from configparser import ConfigParser
import os.path
import sys
from datetime import datetime
def log(level, msg):
print "%s %-4s %s" % (str(datetime.now())[:-3], level, msg)
print("%s %-4s %s" % (str(datetime.now())[:-3], level, msg))
class BusMulticast(threading.Thread):
"""
......@@ -66,7 +66,7 @@ class BusMulticast(threading.Thread):
try:
content = msg.content()
log("INFO","[%s] [%s] Message received" % (self.source, content))
except Exception, e:
except Exception as e:
content = "<unknown>"
log("WARN","[%s] Non-compliant message received" % (self.source,))
......@@ -78,7 +78,7 @@ class BusMulticast(threading.Thread):
log("INFO", "[%s] [%s] Forwarded to %s" % (self.source, content, self.destlist))
except Exception, e:
except Exception as e:
log("FATAL", "[%s] Caught exception: %s" % (self.source, e))
# Abort everything, to avoid half-broken situations
......@@ -87,7 +87,7 @@ class BusMulticast(threading.Thread):
log("INFO", "[%s] Done" % (self.source,))
class RouterConfig(SafeConfigParser):
class RouterConfig(ConfigParser):
"""
Router configuration. Example:
......@@ -99,7 +99,7 @@ class RouterConfig(SafeConfigParser):
and allow multiple source: dest lines to accumulate.
"""
def __init__(self, filename=None):
SafeConfigParser.__init__(self)
ConfigParser.__init__(self)
# set defaults
self.add_section('multicast')
......@@ -114,7 +114,7 @@ class RouterConfig(SafeConfigParser):
return False
log("INFO","[RouterConfig] Reading %s" % (filename,))
SafeConfigParser.read(self, filename)
ConfigParser.read(self, filename)
return True
def sources(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment