yaml is crazy

- removed PyYAML from requirements
* TODO remove try statements
This commit is contained in:
nico 2018-12-22 14:57:13 +01:00
parent af5f1e494d
commit e9208a8277
Signed by: mightyBroccoli
GPG Key ID: EA7C31AAB1BDC1A2
2 changed files with 5 additions and 8 deletions

12
main.py
View File

@ -8,7 +8,6 @@ import requests
import os
import sys
import argparse
import yaml
from ruamel.yaml import YAML, scalarstring
@ -69,12 +68,11 @@ class BlacklistImporter:
os.system("ejabberdctl reload_config")
def process(self):
# check if file was altered
local_file = None
# init new YAML variable
local_file = YAML(typ="safe")
try:
if os.path.isfile(self.outfile):
local_file = yaml.load(open(self.outfile, "r", encoding="utf-8"))
except TypeError:
local_file = local_file.load(open(self.outfile, "r", encoding="utf-8"))
except FileNotFoundError:
pass
remote_file = {
@ -99,7 +97,7 @@ class BlacklistImporter:
elif local_file != remote_file:
self.change = True
# only if the local_file and remote_file are different write new file
# only if the local_file and remote_file are unequal write new file
yml.dump(remote_file, open(self.outfile, "w"))

View File

@ -1,3 +1,2 @@
PyYAML>=3.1.3
ruamel.yaml>=0.15.80
requests>=2.21.0