diff options
author | nico <nico@magicbroccoli.de> | 2019-01-09 19:38:04 +0100 |
---|---|---|
committer | nico <nico@magicbroccoli.de> | 2019-01-09 19:38:04 +0100 |
commit | 134a674228b3d2b42cb7fe2a12f215a225e7544b (patch) | |
tree | 0643df4b2c3e0d0368eab6a2c01625fcb04d801f /classes/xep.py | |
parent | 9c3f6761e5f7749125a0d4939cd1809aabdfd2be (diff) |
initial rework of the implemented functionsdev
+ added __init__ import file for all functions
+ added new helper function
+ added strings.json file
* some logic fixups
* validator fixup
* arg abbreviation moved to misc
Diffstat (limited to 'classes/xep.py')
-rw-r--r-- | classes/xep.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/xep.py b/classes/xep.py index f5fae61..df401a7 100644 --- a/classes/xep.py +++ b/classes/xep.py @@ -47,10 +47,10 @@ class XEPRequest: r = s.get("https://xmpp.org/extensions/xeplist.xml") r.encoding = 'utf-8' local_etag = head.headers['etag'] + self.xeplist = Et.fromstring(r.content.decode()) with open("./common/xeplist.xml", "w") as file: file.write(r.content.decode()) - self.xeplist = Et.fromstring(r.content.decode()) with open('./common/.etag', 'w') as string: string.write(local_etag) |