Removed spaces in front of the colons to pass Travis CI.

This commit is contained in:
schroeji 2015-09-17 10:46:37 +02:00
parent 8a3b8c2112
commit f68d790ccc

View File

@ -95,12 +95,12 @@ class Cmus(IntervalModule):
filename = os.path.basename(fdict['file'])
filebase, _ = os.path.splitext(filename)
fdict['artist'], fdict['title'] = _extract_artist_title(filebase)
self.output = {"full_text" : formatp(self.format, **fdict),
"color" : self.color}
self.output = {"full_text": formatp(self.format, **fdict),
"color": self.color}
else:
self.output = {"full_text" : self.format_not_running,
"color" : self.color_not_running}
self.output = {"full_text": self.format_not_running,
"color": self.color_not_running}
def playpause(self):
status = self._query_cmus().get('status', '')