diff options
author | Marek Siarkowicz <mareksiarkowicz@gmail.com> | 2015-06-15 17:37:54 +0200 |
---|---|---|
committer | Marek Siarkowicz <mareksiarkowicz@gmail.com> | 2015-06-15 17:38:59 +0200 |
commit | 494e542c8eca97cb01f6e4495588a08136f482a0 (patch) | |
tree | 54617e2bb17f1019a6e01473b070c1a21f17132a | |
parent | 1e6c7b96695cb69de8655cbe20e8ddb5baa77a32 (diff) | |
download | pyParrotZikTCP-494e542c8eca97cb01f6e4495588a08136f482a0.tar.xz pyParrotZikTCP-494e542c8eca97cb01f6e4495588a08136f482a0.zip |
Migrate to newer wersion of beatifulsop.
-rw-r--r-- | parrot_zik/resource_manager.py | 2 | ||||
-rw-r--r-- | setup.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/parrot_zik/resource_manager.py b/parrot_zik/resource_manager.py index 4f90fb6..c2dae2f 100644 --- a/parrot_zik/resource_manager.py +++ b/parrot_zik/resource_manager.py @@ -2,7 +2,7 @@ import bluetooth from operator import itemgetter import sys -from BeautifulSoup import BeautifulSoup +from bs4 import BeautifulSoup from .message import Message @@ -40,7 +40,7 @@ setup( ],
install_requires=[
- 'BeautifulSoup', 'pybluez'
+ 'beautifulsoup4', 'pybluez'
],
packages=['parrot_zik', 'parrot_zik.interface', 'parrot_zik.indicator', 'parrot_zik.model'],
|