Changes between Version 148 and Version 149 of Faq


Ignore:
Timestamp:
10/13/2012 10:52:05 PM (11 years ago)
Author:
Cas
Comment:

change to deluge import for libtorrent version

Legend:

Unmodified
Added
Removed
Modified
  • Faq

    v148 v149  
    421421== How do I find what libtorrent version I am using == 
    422422 
    423 The latest versions of Deluge include libtorrent version information in Help|About or with `--version` from the terminal.  
     423The latest versions of Deluge include libtorrent version information in `Help|About` or with `--version` from the terminal.  
    424424 
    425425Alternatively use python to import and query libtorrent:  
    426426 
    427427{{{ 
    428 python -c "import libtorrent as lt; print lt.version" 
     428python -c "from deluge._libtorrent import lt; print lt.version" 
    429429}}} 
    430430