Remove another redundant random.seed()

This commit is contained in:
Et0h 2016-01-23 20:09:05 +00:00
parent b7fff7e32c
commit c30878d499

View File

@ -570,7 +570,6 @@ class SyncplayClient(object):
@needsSharedPlaylistsEnabled
def shufflePlaylist(self):
if self._playlist and len(self._playlist) > 0:
random.seed()
shuffledPlaylist = deepcopy(self._playlist)
random.shuffle(shuffledPlaylist)
self.ui.setPlaylist(shuffledPlaylist)