Changeset 55193f7 in trunk
- Timestamp:
- 2020-11-23T15:28:04Z (4 years ago)
- Branches:
- master
- Children:
- 224085c
- Parents:
- 729a5a0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/allmydata/node.py ¶
r729a5a0 r55193f7 82 82 # reports. Foolscap requires native strings. 83 83 for thing, things_version in list(get_package_versions().items()): 84 app_versions.add_version(ensure_str(thing), ensure_str(things_version)) 84 app_versions.add_version( 85 ensure_str(thing), 86 ensure_str(things_version) if things_version is not None else None, 87 ) 85 88 86 89 # group 1 will be addr (dotted quad string), group 3 if any will be portnum (string)
Note: See TracChangeset
for help on using the changeset viewer.