update pyyaml

This commit is contained in:
Noémi Ványi 2019-01-07 21:06:53 +01:00
parent b9e42e69be
commit 2478c5395d
2 changed files with 3 additions and 3 deletions

View File

@ -6,5 +6,5 @@ idna==2.7
pygments==2.1.3 pygments==2.1.3
pyopenssl==18.0.0 pyopenssl==18.0.0
python-dateutil==2.7.3 python-dateutil==2.7.3
pyyaml==3.13 pyyaml==4.2b1
requests[socks]==2.19.1 requests[socks]==2.19.1

View File

@ -22,7 +22,7 @@ from os.path import realpath, dirname, join, abspath, isfile
from io import open from io import open
from ssl import OPENSSL_VERSION_INFO, OPENSSL_VERSION from ssl import OPENSSL_VERSION_INFO, OPENSSL_VERSION
try: try:
from yaml import load from yaml import safe_load
except: except:
from sys import exit, stderr from sys import exit, stderr
stderr.write('[E] install pyyaml\n') stderr.write('[E] install pyyaml\n')
@ -52,7 +52,7 @@ if not settings_path:
# load settings # load settings
with open(settings_path, 'r', encoding='utf-8') as settings_yaml: with open(settings_path, 'r', encoding='utf-8') as settings_yaml:
settings = load(settings_yaml) settings = safe_load(settings_yaml)
''' '''
enable debug if enable debug if