Skip to content
Snippets Groups Projects
Commit 89a80e42 authored by David Trattnig's avatar David Trattnig
Browse files

Helper for displaying entries as string.

parent a23ed4c9
No related branches found
No related tags found
No related merge requests found
......@@ -55,6 +55,18 @@ class EngineUtil:
return ChannelType.LIVE
@staticmethod
def get_entries_string(entries):
"""
Returns a list of entries as String for logging purposes.
"""
s = ""
for entry in entries:
s += str(entry)
if entry != entries[-1]: s += ", "
return s
@staticmethod
def lqs_annotate_cuein(uri, cue_in):
"""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment