Skip to content

Commit

Permalink
fixup! python2: Fix ImportError importing http.client
Browse files Browse the repository at this point in the history
move the __future__ import below the copyright
  • Loading branch information
yonran committed Oct 10, 2023
1 parent 8ef507b commit e14b7fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion remoteobjects/http.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from __future__ import absolute_import
# Copyright (c) 2009-2010 Six Apart Ltd.
# All rights reserved.
#
Expand Down Expand Up @@ -28,6 +27,7 @@
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.

from __future__ import absolute_import
import simplejson as json
from remoteobjects.json import ForgivingDecoder

Expand Down

0 comments on commit e14b7fb

Please sign in to comment.