diff options
author | neodarz <neodarz@neodarz.net> | 2019-05-05 12:54:50 +0200 |
---|---|---|
committer | neodarz <neodarz@neodarz.net> | 2019-05-05 12:59:00 +0200 |
commit | 2b3c72247c59e1a8a8c423333ab0fa6b9dcd2d59 (patch) | |
tree | 2b60ac12ea7ea02640fa5ed3081f3a0f5085fbd3 | |
parent | 2cfb8fac238222d3b67349539846905ec812962c (diff) | |
download | pyParrotZikTCP-2b3c72247c59e1a8a8c423333ab0fa6b9dcd2d59.tar.xz pyParrotZikTCP-2b3c72247c59e1a8a8c423333ab0fa6b9dcd2d59.zip |
Fix beautifulsoup warning implementation
-rw-r--r-- | parrot_zik/resource_manager.py | 2 |
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() |