diff options
author | MaZderMind <git@mazdermind.de> | 2015-09-05 20:47:25 +0200 |
---|---|---|
committer | MaZderMind <git@mazdermind.de> | 2015-09-05 20:47:25 +0200 |
commit | 11194b420195c13b33ff3b04c7b18292ecd2265e (patch) | |
tree | 185170c86be5751cd67f6d6a97affbb75b19f279 /voctocore/lib | |
parent | 48c78372e7cda961824cd595f1f9f270621bd65b (diff) |
change set_composite command back to set_composite_mode
Diffstat (limited to 'voctocore/lib')
-rw-r--r-- | voctocore/lib/commands.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/voctocore/lib/commands.py b/voctocore/lib/commands.py index 6168b95..10fb90c 100644 --- a/voctocore/lib/commands.py +++ b/voctocore/lib/commands.py @@ -108,11 +108,11 @@ class ControlServerCommands(object): mode = self.pipeline.vmix.getCompositeMode() return encodeEnumName(CompositeModes, mode) - def get_composite(self): + def get_composite_mode(self): status = self._get_composite_status() return OkResponse('composite_mode', status) - def set_composite(self, mode_name_or_id): + def set_composite_mode(self, mode_name_or_id): mode = decodeEnumName(CompositeModes, mode_name_or_id) self.pipeline.vmix.setCompositeMode(mode) |