home » zplus/freepost.git
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 deletionsdownload


Diffstat
-rw-r--r-- freepost/__init__.py 2
-rw-r--r-- requirements.txt 4

Diff options
View
Side
Whitespace
Context lines
Inter-hunk lines
+1/-1 M   freepost/__init__.py
index e699a74..3431014
old size: 27K - new size: 27K
@@ -22,7 +22,7 @@ application = bottle.app ()
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
index d565677..596e85b
old size: 85B - new size: 89B
@@ -3,8 +3,8 @@ bottle
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