Skip to content

Commit 7d86b42

Browse files
committed
3.5.0c
1 parent ae1088d commit 7d86b42

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.5.0b
1+
3.5.0c

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
### 3.5.0
44
- BREAKING CHANGE: `./config.ini` needs to be moved to `/config/config.ini` (change needed to better support Docker - sorry!)
55
- Add the possibility to define a Discord bot token on Docker startup with the environment variable `TOKEN`, eliminating the need to manually create a `config.ini` file. The `TOKEN` environment variable will have no effect if a `config.ini` file already exists.
6-
- 3.5.0b: fixed startup issue
6+
- 3.5.0c: fixed startup issue
77

88
### 3.4.5
99
- Add German translation ([#137](https://github.com/eibex/reaction-light/pull/137) by [Marc-R2](https://github.com/Marc-R2))

cogs/utils/docker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def setup(directory):
3838
os.remove(f"{bot_folder}/config/config.ini")
3939

4040
config = configparser.ConfigParser()
41-
config.read(f"{bot_folder}/config/config.ini.sample")
41+
config.read(f"{bot_folder}/config.ini.sample")
4242
config["server"]["token"] = token
4343
with open(f"{bot_folder}/config/config.ini", "w") as f:
4444
config.write(f)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@
116116

117117

118118
config = configparser.ConfigParser()
119-
config.read(f"{folder}/config/config.ini.sample")
119+
config.read(f"{folder}/config.ini.sample")
120120
config["server"]["token"] = token
121121
config["server"]["name"] = name
122122
config["server"]["logo"] = logo

0 commit comments

Comments
 (0)