From 39f4834e256a6cf03c76b6a23f50f88b0e31b4ce Mon Sep 17 00:00:00 2001 From: Yoann QUERET Date: Fri, 2 Oct 2015 16:09:38 +0200 Subject: Make uniform " and ' --- gui/muxconfig.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'gui/muxconfig.py') 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", -- cgit v1.2.3