mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-02-07 03:40:14 +00:00
Make all the config unicode
This commit is contained in:
parent
45a8351367
commit
a06caae667
@ -257,7 +257,12 @@ def _create_node(reactor, request, temp_dir, introducer_furl, flog_gatherer, nam
|
|||||||
def created(_):
|
def created(_):
|
||||||
config_path = join(node_dir, 'tahoe.cfg')
|
config_path = join(node_dir, 'tahoe.cfg')
|
||||||
config = get_config(config_path)
|
config = get_config(config_path)
|
||||||
set_config(config, 'node', 'log_gatherer.furl', flog_gatherer)
|
set_config(
|
||||||
|
config,
|
||||||
|
u'node',
|
||||||
|
u'log_gatherer.furl',
|
||||||
|
flog_gatherer.decode("utf-8"),
|
||||||
|
)
|
||||||
write_config(config_path, config)
|
write_config(config_path, config)
|
||||||
created_d.addCallback(created)
|
created_d.addCallback(created)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user