Fallback umsgpack import fix

This commit is contained in:
Peter Šurda 2017-06-10 10:09:44 +02:00
parent f366447e94
commit 7e8ee51322
Signed by untrusted user: PeterSurda
GPG Key ID: 0C5F50C0B5F37D87
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
try:
import msgpack
except ImportError:
import fallback.umsgpack as msgpack
import fallback.umsgpack.umsgpack as msgpack
import string
import zlib