X-Git-Url: https://git.kaliko.me/?a=blobdiff_plain;f=sima%2Fcore.py;h=f6703ca8317b0c204fce89e8234cd139518bd38d;hb=f240c28597f0e705e690590cbc0e75de041ce592;hp=87501e83b7d8bc60a616c252229f401d3bfc571e;hpb=f0550def23bc07bba4cfaa55d9e724f9fe7776a9;p=mpd-sima.git diff --git a/sima/core.py b/sima/core.py index 87501e8..f6703ca 100644 --- a/sima/core.py +++ b/sima/core.py @@ -2,11 +2,10 @@ """Core Object dealing with plugins and player client """ -__version__ = '0.12.0.b' +__version__ = '0.12.0pr1' __author__ = 'kaliko jack' __url__ = 'git://git.kaliko.me/sima.git' -import random import sys import time @@ -82,7 +81,6 @@ class Sima(Daemon): pl_callback = getattr(plugin, 'callback_need_track_fb')() if pl_callback: to_add.extend(pl_callback) - random.shuffle(to_add) for track in to_add: self.player.add(track)