forked from LBRYCommunity/lbry-sdk
Merge pull request #258 from lbryio/fix-user-specified-ui-bug
Fix deferred for loading user-specified UIs
This commit is contained in:
commit
c407d32f5d
1 changed files with 1 additions and 1 deletions
|
@ -80,7 +80,7 @@ class UIManager(object):
|
|||
log.info("User specified UI directory doesn't exist, using " + self.branch)
|
||||
elif self.loaded_branch == "user-specified":
|
||||
log.info("Loading user provided UI")
|
||||
d = defer.maybeDeferred(self._load_ui())
|
||||
d = defer.maybeDeferred(self._load_ui)
|
||||
return d
|
||||
else:
|
||||
log.info("Checking for updates for UI branch: " + self.branch)
|
||||
|
|
Loading…
Add table
Reference in a new issue