mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-02-20 17:52:50 +00:00
"unicode" is spelled "str" now
This commit is contained in:
parent
4963e78f9f
commit
c529d271ee
@ -463,8 +463,8 @@ class _Config(object):
|
||||
for petname, config
|
||||
in introducers_yaml.get("introducers", {}).items()
|
||||
}
|
||||
assert all(isinstance(unicode, k) for k in introducers.keys())
|
||||
assert all(isinstance(unicode, v) for v in introducers.values())
|
||||
assert all(isinstance(str, k) for k in introducers.keys())
|
||||
assert all(isinstance(str, v) for v in introducers.values())
|
||||
log.msg(
|
||||
"found {} introducers in private/introducers.yaml".format(
|
||||
len(introducers),
|
||||
|
Loading…
x
Reference in New Issue
Block a user