diff options
author | Yoann QUERET <yoann@queret.net> | 2015-10-02 16:09:38 +0200 |
---|---|---|
committer | Yoann QUERET <yoann@queret.net> | 2015-10-02 16:09:38 +0200 |
commit | 39f4834e256a6cf03c76b6a23f50f88b0e31b4ce (patch) | |
tree | 5a1bc10c434831ea4960120d8ad311468148276d /gui/muxconfig.py | |
parent | 89f5a6aa4f6827399db78e7850020626fbac06bb (diff) | |
download | dabmux-39f4834e256a6cf03c76b6a23f50f88b0e31b4ce.tar.gz dabmux-39f4834e256a6cf03c76b6a23f50f88b0e31b4ce.tar.bz2 dabmux-39f4834e256a6cf03c76b6a23f50f88b0e31b4ce.zip |
Make uniform " and '
Diffstat (limited to 'gui/muxconfig.py')
-rw-r--r-- | gui/muxconfig.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gui/muxconfig.py b/gui/muxconfig.py index 8358118..b7161a7 100644 --- a/gui/muxconfig.py +++ b/gui/muxconfig.py @@ -27,7 +27,8 @@ class General(object): """Container object for general options""" def __init__(self, pt): ptree = pt['general'] - for fieldname in ["nbframes", + for fieldname in [ + "nbframes", "statsserverport", "writescca", "tist", @@ -44,7 +45,8 @@ class Service(object): def __init__(self, name, ptree): self.name = name - for fieldname in ['id', + for fieldname in [ + "id", "label", "shortlabel", "pty", @@ -58,7 +60,8 @@ class Subchannel(object): """Container object for a subchannel""" def __init__(self, name, ptree): self.name = name - for fieldname in ['type', + for fieldname in [ + "type", "inputfile", "zmq-buffer", "zmq-prebuffering", |