Fix error in tobytes()
This commit is contained in:
parent
52da820554
commit
4ef08cbe5e
@ -125,7 +125,7 @@ def build_config(_config_file):
|
||||
'GEN_STAT_BRIDGES': config.getboolean(section, 'GEN_STAT_BRIDGES'),
|
||||
'ALLOW_NULL_PASSPHRASE': config.getboolean(section, 'ALLOW_NULL_PASSPHRASE'),
|
||||
'ANNOUNCEMENT_LANGUAGES': config.get(section, 'ANNOUNCEMENT_LANGUAGES'),
|
||||
'SERVER_ID': config.get(section, 'SERVER_ID').to_bytes(4, 'big')
|
||||
'SERVER_ID': config.getint(section, 'SERVER_ID').to_bytes(4, 'big')
|
||||
|
||||
})
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user