From f2c56fb890a3a8426708e20c95a7a76b8ef87968 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antoine=20Beaupr=C3=A9?= Date: Thu, 8 Oct 2015 16:57:36 -0400 Subject: [PATCH] try to fix build on RTD *again* --- borg/helpers.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/borg/helpers.py b/borg/helpers.py index 10ee0441a..a0eb0cb9e 100644 --- a/borg/helpers.py +++ b/borg/helpers.py @@ -16,8 +16,6 @@ from datetime import datetime, timezone, timedelta from fnmatch import translate from operator import attrgetter -import msgpack - def have_cython(): """allow for a way to disable Cython includes @@ -37,6 +35,7 @@ if have_cython(): from . import hashindex from . import chunker from . import crypto + import msgpack class Error(Exception):