Skip to content

Commit

Permalink
flake8: Fix compat with pep8 1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jodal committed Jan 17, 2016
1 parent 2a01760 commit 18b609f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions mopidy/audio/scan.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,9 @@ def _process(pipeline, timeout_ms):
have_audio = False
missing_message = None

types = (gst.MESSAGE_ELEMENT | gst.MESSAGE_APPLICATION | gst.MESSAGE_ERROR
| gst.MESSAGE_EOS | gst.MESSAGE_ASYNC_DONE | gst.MESSAGE_TAG)
types = (
gst.MESSAGE_ELEMENT | gst.MESSAGE_APPLICATION | gst.MESSAGE_ERROR |
gst.MESSAGE_EOS | gst.MESSAGE_ASYNC_DONE | gst.MESSAGE_TAG)

previous = clock.get_time()
while timeout > 0:
Expand Down

0 comments on commit 18b609f

Please sign in to comment.