mirror of
https://github.com/codex-storage/deluge.git
synced 2025-01-13 13:05:37 +00:00
Add missing semi-colons
This commit is contained in:
parent
67c09ebf56
commit
34fe76780e
@ -1322,19 +1322,19 @@ static PyObject *torrent_proxy_settings(PyObject *self, PyObject *args)
|
||||
M_proxy_settings->port = portnum;
|
||||
|
||||
if (peerproxy){
|
||||
M_ses->set_peer_proxy(*M_proxy_settings)
|
||||
M_ses->set_peer_proxy(*M_proxy_settings);
|
||||
}
|
||||
|
||||
if (webseedproxy){
|
||||
M_ses->set_web_seed_proxy(*M_proxy_settings)
|
||||
M_ses->set_web_seed_proxy(*M_proxy_settings);
|
||||
}
|
||||
|
||||
if (trackerproxy){
|
||||
M_ses->set_tracker_proxy(*M_proxy_settings)
|
||||
M_ses->set_tracker_proxy(*M_proxy_settings);
|
||||
}
|
||||
|
||||
if (dhtproxy){
|
||||
M_ses->set_dht_proxy(*M_proxy_settings)
|
||||
M_ses->set_dht_proxy(*M_proxy_settings);
|
||||
}
|
||||
|
||||
Py_INCREF(Py_None); return Py_None;
|
||||
|
Loading…
x
Reference in New Issue
Block a user