Author
|
zPlus <zplus@peers.community>
2021-12-01 07:55:22
|
Committer
|
zPlus <zplus@peers.community>
2021-12-01 07:55:22
|
Commit
|
4f5f900
(patch)
|
Tree
|
e5723c7
|
Parent(s)
|
|
Fix #97 Issue within server test regarding bottle.
commits diff:
47a5fe8..4f5f900
2 files changed,
3 insertions,
3 deletions
—
download
Diffstat
Diff options
+1/-1
M freepost/__init__.py
22
|
22
|
|
|
23
|
23
|
|
# Load user settings for this app
|
24
|
24
|
|
with open ('settings.yaml', encoding='UTF-8') as file:
|
25
|
|
- |
settings = yaml.load (file)
|
|
25
|
+ |
settings = yaml.safe_load (file)
|
26
|
26
|
|
|
27
|
27
|
|
# Directories to search for app templates
|
28
|
28
|
|
bottle.TEMPLATE_PATH = [ './freepost/templates' ]
|
+2/-2
M requirements.txt
3
|
3
|
|
python-dateutil
|
4
|
4
|
|
jinja2
|
5
|
5
|
|
markdown
|
6
|
|
- |
pyld
|
|
6
|
+ |
# pyld
|
7
|
7
|
|
pysqlite3
|
8
|
8
|
|
pyyaml
|
9
|
|
- |
requests
|
|
9
|
+ |
# requests
|
10
|
10
|
|
timeago
|