mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-21 03:54:50 +00:00
dummy function now accepts arbitrary number of variables.
metafile uses hashlib instead of sha library.
This commit is contained in:
parent
206718de08
commit
4b934a07ba
1 changed files with 2 additions and 2 deletions
|
@ -20,7 +20,7 @@ import os
|
|||
import os.path
|
||||
import sys
|
||||
import time
|
||||
from sha import sha
|
||||
from hashlib import sha1 as sha
|
||||
|
||||
from deluge.bencode import bencode
|
||||
from deluge.log import LOG as log
|
||||
|
@ -52,7 +52,7 @@ def decode_from_filesystem(path):
|
|||
|
||||
return decoded_path
|
||||
|
||||
def dummy(v):
|
||||
def dummy(*v):
|
||||
pass
|
||||
|
||||
def make_meta_file(path, url, piece_length, progress=dummy,
|
||||
|
|
Loading…
Add table
Reference in a new issue