1
0
mirror of https://github.com/moparisthebest/SickRage synced 2025-01-05 10:58:01 -05:00

Forgot and int()

This commit is contained in:
tlex 2014-05-11 10:42:53 +03:00
parent d0105a2f6a
commit c62e34c601

View File

@ -1570,7 +1570,7 @@ def save_config():
new_config['TORRENT']['torrent_paused'] = int(TORRENT_PAUSED) new_config['TORRENT']['torrent_paused'] = int(TORRENT_PAUSED)
new_config['TORRENT']['torrent_high_bandwidth'] = int(TORRENT_HIGH_BANDWIDTH) new_config['TORRENT']['torrent_high_bandwidth'] = int(TORRENT_HIGH_BANDWIDTH)
new_config['TORRENT']['torrent_label'] = TORRENT_LABEL new_config['TORRENT']['torrent_label'] = TORRENT_LABEL
new_config['TORRENT']['torrent_verify_cert'] = TORRENT_VERIFY_CERT new_config['TORRENT']['torrent_verify_cert'] = int(TORRENT_VERIFY_CERT)
new_config['XBMC'] = {} new_config['XBMC'] = {}
new_config['XBMC']['use_xbmc'] = int(USE_XBMC) new_config['XBMC']['use_xbmc'] = int(USE_XBMC)