mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-03 00:24:54 -04:00
Replaced all occurences of e.message with str(e)
Signed-off-by: Schnuffle <schnuffle@github.com>
This commit is contained in:
parent
2c695fd1aa
commit
dc5db01ff2
18 changed files with 19 additions and 19 deletions
|
@ -25,7 +25,7 @@ if __name__ == "__main__":
|
|||
try:
|
||||
config = HomeServerConfig.load_config("", sys.argv[3:])
|
||||
except ConfigError as e:
|
||||
sys.stderr.write("\n" + e.message + "\n")
|
||||
sys.stderr.write("\n" + str(e) + "\n")
|
||||
sys.exit(1)
|
||||
|
||||
print (getattr(config, key))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue