From c30878d49998e18d7f224263bcdd1b48e076a931 Mon Sep 17 00:00:00 2001 From: Et0h Date: Sat, 23 Jan 2016 20:09:05 +0000 Subject: [PATCH] Remove another redundant random.seed() --- syncplay/client.py | 1 - 1 file changed, 1 deletion(-) diff --git a/syncplay/client.py b/syncplay/client.py index 2154c57..4d75484 100644 --- a/syncplay/client.py +++ b/syncplay/client.py @@ -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)