Skip to content
This repository has been archived by the owner on Jan 20, 2024. It is now read-only.

Small change to enable library to run under Python2.7 #92

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion FuelSDK/client.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
import os
import logging
import configparser

# Python2.7 compatibility- try loading Python3 library, then fall back to 2.7
try:
import configparser
except:
import ConfigParser as configparser
import time
import json

Expand Down