Merge remote-tracking branch 'origin/master' into paas
Change-Id: If911e353cbeb9f278c57c69812cbdfce0ad1e242
Signed-off-by: Mark Beierl <mark.beierl@canonical.com>
diff --git a/osm_lcm/nglcm.py b/osm_lcm/nglcm.py
index 67b2a3f..6972477 100644
--- a/osm_lcm/nglcm.py
+++ b/osm_lcm/nglcm.py
@@ -37,7 +37,6 @@
class NGLcm:
-
main_config = LcmCfg()
def __init__(self, config_file, loop=None):
@@ -97,7 +96,7 @@
try:
self.db = Database(self.main_config.to_dict()).instance.db
- except (DbException) as e:
+ except DbException as e:
self.logger.critical(str(e), exc_info=True)
raise LcmException(str(e))
@@ -142,7 +141,6 @@
if __name__ == "__main__":
-
try:
opts, args = getopt.getopt(
sys.argv[1:], "hc:", ["config=", "help", "health-check"]