aboutsummaryrefslogtreecommitdiff
path: root/parrot_zik/resource_manager.py
diff options
context:
space:
mode:
authorneodarz <neodarz@neodarz.net>2019-05-05 12:54:50 +0200
committerneodarz <neodarz@neodarz.net>2019-05-05 12:59:00 +0200
commit2b3c72247c59e1a8a8c423333ab0fa6b9dcd2d59 (patch)
tree2b60ac12ea7ea02640fa5ed3081f3a0f5085fbd3 /parrot_zik/resource_manager.py
parent2cfb8fac238222d3b67349539846905ec812962c (diff)
downloadpyParrotZikTCP-2b3c72247c59e1a8a8c423333ab0fa6b9dcd2d59.tar.xz
pyParrotZikTCP-2b3c72247c59e1a8a8c423333ab0fa6b9dcd2d59.zip
Fix beautifulsoup warning implementation
Diffstat (limited to '')
-rw-r--r--parrot_zik/resource_manager.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/parrot_zik/resource_manager.py b/parrot_zik/resource_manager.py
index cd358e1..cab1d8d 100644
--- a/parrot_zik/resource_manager.py
+++ b/parrot_zik/resource_manager.py
@@ -78,7 +78,7 @@ class ResourceManagerBase(object):
self.sock.recv(30)
else:
self.sock.recv(7)
- return BeautifulSoup(self.sock.recv(1024))
+ return BeautifulSoup(self.sock.recv(1024), features="html5lib")
def close(self):
self.sock.close()