mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +00:00
Update libtorrent minimum version checking.
This commit is contained in:
parent
71183f6c19
commit
b4d7e42973
1 changed files with 2 additions and 2 deletions
|
@ -45,9 +45,9 @@ supports.
|
|||
|
||||
"""
|
||||
|
||||
REQUIRED_VERSION = "0.14.9.0"
|
||||
REQUIRED_VERSION = "0.16.1.0"
|
||||
|
||||
def check_version(LT):
|
||||
def check_version(lt):
|
||||
from deluge.common import VersionSplit
|
||||
if VersionSplit(lt.version) < VersionSplit(REQUIRED_VERSION):
|
||||
raise ImportError("This version of Deluge requires libtorrent >=%s!" % REQUIRED_VERSION)
|
||||
|
|
Loading…
Add table
Reference in a new issue