pull/13/head
DiMartinoXBMC 2016-05-01 17:25:32 +03:00
parent 534f508995
commit dea583d326
3 changed files with 1255 additions and 644 deletions

View File

@ -5,5 +5,4 @@
<module fileurl="file://$PROJECT_DIR$/.idea/plugin.video.torrenter.iml" filepath="$PROJECT_DIR$/.idea/plugin.video.torrenter.iml" />
</modules>
</component>
</project>
</project>

File diff suppressed because it is too large Load Diff

View File

@ -1064,7 +1064,10 @@ class qBittorrent:
'uploading': 'seeding',
'stalledUP': 'seeding',
}
return mapping[code]
if code in mapping:
return mapping[code]
else:
return 'unknown'
class Deluge: