add muting filter for stream API
[rainbowstream.git] / rainbowstream / config.py
index 2a11d3bdc9ea36c23d64d172ef4c73d2f910a28f..fddc7eee029a86cc6cfe3b3cc85afe63171d1b62 100644 (file)
@@ -142,8 +142,8 @@ def init_config():
     Init configuration
     """
     # Load the initial config
-    config = os.path.dirname(
-        __file__) + '/colorset/config'
+    config = os.path.dirname(__file__) + \
+        '/colorset/config'
     try:
         data = load_config(config)
         for d in data:
@@ -159,8 +159,8 @@ def init_config():
     except:
         pass
     # Load default theme
-    theme_file = os.path.dirname(
-        __file__) + '/colorset/' + c['THEME'] + '.json'
+    theme_file = os.path.dirname(__file__) + \
+        '/colorset/' + c['THEME'] + '.json'
     try:
         data = load_config(theme_file)
         for d in data: