diff --git a/platypush/plugins/rtorrent.py b/platypush/plugins/rtorrent.py
index d430c814b..0544c22eb 100644
--- a/platypush/plugins/rtorrent.py
+++ b/platypush/plugins/rtorrent.py
@@ -450,7 +450,7 @@ class RtorrentPlugin(TorrentPlugin):
         Terminate all the active transfers and quit the monitor.
         """
         # noinspection PyUnresolvedReferences
-        torrents = self.status().output.keys().copy()
+        torrents = list(self.status().output.keys()).copy()
         for torrent in torrents:
             self.remove(torrent)