Тест убран
parent
f2788dc63c
commit
7e8efc570e
|
@ -677,12 +677,11 @@ class Pyrrent2http(object):
|
||||||
logging.info('Opening local torrent file: %s' % (absPath,))
|
logging.info('Opening local torrent file: %s' % (absPath,))
|
||||||
with open(absPath, 'rb') as f:
|
with open(absPath, 'rb') as f:
|
||||||
btorrent_info = f.read()
|
btorrent_info = f.read()
|
||||||
logging.info(repr(btorrent_info))
|
torrent_info = lt.torrent_info(lt.bdecode(btorrent_info))
|
||||||
dtorrent_info = lt.bdecode(btorrent_info)
|
|
||||||
logging.info(repr(dtorrent_info))
|
|
||||||
torrent_info = lt.torrent_info(dtorrent_info)
|
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
strerror = e.args
|
strerror = e.args
|
||||||
|
if btorrent_info == '':
|
||||||
|
logging.error('Torrent-file is empty: %s' % (absPath,))
|
||||||
logging.error('Build torrent params error is (%s)' % (strerror,))
|
logging.error('Build torrent params error is (%s)' % (strerror,))
|
||||||
if STANDALONE:
|
if STANDALONE:
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
Loading…
Reference in New Issue