Module: deluge Branch: 1.3-stable Commit: 74d59eb6ec5d1a19bbed526d072238824a9afb14
Author: Chase Sterling <[email protected]> Date: Mon Dec 3 01:08:31 2012 -0500 Fix the version check in _libtorrent to work as intended. --- deluge/_libtorrent.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/deluge/_libtorrent.py b/deluge/_libtorrent.py index ab782d6..e68e535 100644 --- a/deluge/_libtorrent.py +++ b/deluge/_libtorrent.py @@ -47,7 +47,7 @@ supports. REQUIRED_VERSION = "0.14.9.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) -- You received this message because you are subscribed to the Google Groups "deluge-commit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/deluge-commit?hl=en.
