Changeset fd463229 in trunk


Ignore:
Timestamp:
2020-11-24T18:35:22Z (4 years ago)
Author:
GitHub <noreply@…>
Branches:
master
Children:
4e5eb130
Parents:
729a5a0 (diff), a06caae6 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
git-author:
Jean-Paul Calderone <exarkun@…> (2020-11-24 18:35:22)
git-committer:
GitHub <noreply@…> (2020-11-24 18:35:22)
Message:

Merge pull request #906 from tahoe-lafs/3517.integration-tests-set-config-unicode

Use unicode for config in the integration tests

Fixes: ticket:3517

Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified integration/util.py

    r729a5a0 rfd463229  
    258258            config_path = join(node_dir, 'tahoe.cfg')
    259259            config = get_config(config_path)
    260             set_config(config, 'node', 'log_gatherer.furl', flog_gatherer)
     260            set_config(
     261                config,
     262                u'node',
     263                u'log_gatherer.furl',
     264                flog_gatherer.decode("utf-8"),
     265            )
    261266            write_config(config_path, config)
    262267        created_d.addCallback(created)
Note: See TracChangeset for help on using the changeset viewer.