How would you go about formatting a long line such as this? I\'d like to get it to no more than 80 characters wide:
logger.info(\"Skipping {0} because its th
Consecutive string literals are joined by the compiler, and parenthesized expressions are considered to be a single line of code:
logger.info("Skipping {0} because it's thumbnail was " "already in our system as {1}.".format(line[indexes['url']], video.title))