[teamcoco] Fix regex in 2.6 (#2700)
authorPhilipp Hagemeister <phihag@phihag.de>
Fri, 4 Apr 2014 20:46:44 +0000 (22:46 +0200)
committerPhilipp Hagemeister <phihag@phihag.de>
Fri, 4 Apr 2014 20:46:47 +0000 (22:46 +0200)
commitc465afd736716ab1a50e2d03db535028b4f4e723
treeb0d78be925f10608ed485c246b6fc0cd1a5c12d8
parentb84d6e7fc42affddeb1baf989cf394fedc41a96d
[teamcoco] Fix regex in 2.6 (#2700)

The re engine does not want to repeat an empty string, for fear that something like

    (.*)*

could be matching the tokens ...

    ""
    "" ""
    "" "" ""

Of course, that's harmless with a question mark, although still somewhat strange.
youtube_dl/extractor/teamcoco.py