def ConvertToDemilitedFiles()

in translate_captions/captions_helper.py [0:0]


    def ConvertToDemilitedFiles(self,inputCaptions):
        marker = "<span>"
        # Convert captions to text with marker between caption lines
        inputEntries = map(lambda c: c["caption"], inputCaptions)
        inputDelimited = marker.join(inputEntries)
        self.logger.debug(inputDelimited)
        return inputDelimited