We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d33409 commit 4b6e6dfCopy full SHA for 4b6e6df
sogs.ini.sample
@@ -74,7 +74,7 @@
74
[rooms]
75
76
; How many days we consider a user to be "active" in a room without having at least retrieved
77
-; messages from the room, in days. (This must be ≤ active_prune_threshold, below).
+; messages from the room, in days. (This must be <= active_prune_threshold, below).
78
;
79
;active_threshold = 7
80
sogs/config.py
@@ -64,7 +64,7 @@ def load_config():
64
65
logger.info(f"Loading config from {conf_ini}")
66
cp = configparser.ConfigParser()
67
- cp.read(conf_ini, encoding='utf-8')
+ cp.read(conf_ini)
68
69
# Set log level up first (we'll set it again below, mainly to log it if we have debug logging
70
# enabled).
0 commit comments