Use msgpack pip package everywhere

This commit is contained in:
shortcutme 2018-02-27 02:48:15 +01:00
parent af57083afd
commit bca5d8a6c5
No known key found for this signature in database
GPG key ID: 5B63BAE6CB9613AE
5 changed files with 5 additions and 5 deletions

View file

@ -56,7 +56,7 @@ class ConnectionServer(object):
# Check msgpack version
if msgpack.version[0] == 0 and msgpack.version[1] < 4:
self.log.error(
"Error: Unsupported msgpack version: %s (<0.4.0), please run `sudo apt-get install python-pip; sudo pip install msgpack-python --upgrade`" %
"Error: Unsupported msgpack version: %s (<0.4.0), please run `sudo apt-get install python-pip; sudo pip install msgpack --upgrade`" %
str(msgpack.version)
)
sys.exit(0)