We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8114ba commit 67bab0bCopy full SHA for 67bab0b
1 file changed
autoremovetorrents/client/utorrent.py
@@ -125,7 +125,7 @@ def remove_torrent(self, torrent_hash):
125
126
# Remove Torrent and Data
127
def remove_data(self, torrent_hash):
128
- request = self._session.get(self._host+'/gui/',
+ request = self._session.get(self._host+'/gui/',
129
params={'action':'removedata', 'token':self._token, 'hash':torrent_hash})
130
if request.status_code != 200:
131
raise DeletionFailure('Cannot delete torrent %s and its data. The server responses HTTP %d.' % (torrent_hash, request.status_code))
0 commit comments