forked from LBRYCommunity/lbry-sdk
fix
This commit is contained in:
parent
903cd86cdd
commit
5984ae7ce9
6 changed files with 6 additions and 10 deletions
|
@ -8,12 +8,6 @@ can and probably will change functionality and break backwards compatability
|
|||
at anytime.
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [0.20.3] - 2018-07-20
|
||||
### Changed
|
||||
* Additional information added to the balance error message when editing a claim.
|
||||
(https://github.com/lbryio/lbry/pull/1309)
|
||||
|
||||
### Security
|
||||
*
|
||||
*
|
||||
|
@ -40,7 +34,7 @@ at anytime.
|
|||
* `requires` decorator to register the components required by a `jsonrpc_` command, to facilitate commands registering asynchronously
|
||||
* unittests for `ComponentManager`
|
||||
* script to generate docs/api.json file (https://github.com/lbryio/lbry.tech/issues/42)
|
||||
|
||||
* additional information to the balance error message when editing a claim (https://github.com/lbryio/lbry/pull/1309)
|
||||
|
||||
### Removed
|
||||
* most of the internal attributes from `Daemon`
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
import logging
|
||||
import customLogger
|
||||
|
||||
__version__ = "0.20.4"
|
||||
version = tuple(__version__.split('.'))
|
||||
|
|
|
@ -5,3 +5,5 @@ This includes classes for connecting to other peers and downloading blobs from t
|
|||
connections from peers and responding to their requests, managing locally stored blobs, sending
|
||||
and receiving payments, and locating peers in the DHT.
|
||||
"""
|
||||
|
||||
from lbrynet import custom_logger
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
from lbrynet import custom_logger
|
||||
import Components # register Component classes
|
||||
from lbrynet.daemon.auth.client import LBRYAPIClient
|
||||
get_client = LBRYAPIClient.get_client
|
||||
|
|
|
@ -6,7 +6,7 @@ import unittest
|
|||
from twisted.internet import defer
|
||||
from twisted import trial
|
||||
|
||||
from lbrynet import customLogger
|
||||
from lbrynet import custom_logger
|
||||
from lbrynet.tests.util import is_android
|
||||
|
||||
|
||||
|
@ -22,7 +22,7 @@ class TestLogger(trial.unittest.TestCase):
|
|||
return d
|
||||
|
||||
def setUp(self):
|
||||
self.log = customLogger.Logger('test')
|
||||
self.log = custom_logger.Logger('test')
|
||||
self.stream = StringIO.StringIO()
|
||||
handler = logging.StreamHandler(self.stream)
|
||||
handler.setFormatter(logging.Formatter("%(filename)s:%(lineno)d - %(message)s"))
|
||||
|
|
Loading…
Add table
Reference in a new issue