Skip to content

Commit 4b6e6df

Browse files
committed
remove non-ascii char in sogs.ini.sample
1 parent 2d33409 commit 4b6e6df

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

sogs.ini.sample

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
[rooms]
7575

7676
; 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).
77+
; messages from the room, in days. (This must be <= active_prune_threshold, below).
7878
;
7979
;active_threshold = 7
8080

sogs/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def load_config():
6464

6565
logger.info(f"Loading config from {conf_ini}")
6666
cp = configparser.ConfigParser()
67-
cp.read(conf_ini, encoding='utf-8')
67+
cp.read(conf_ini)
6868

6969
# Set log level up first (we'll set it again below, mainly to log it if we have debug logging
7070
# enabled).

0 commit comments

Comments
 (0)