summaryrefslogtreecommitdiff
path: root/swiftclient/client.py
diff options
context:
space:
mode:
Diffstat (limited to 'swiftclient/client.py')
-rw-r--r--swiftclient/client.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/swiftclient/client.py b/swiftclient/client.py
index 689188c..e7409ab 100644
--- a/swiftclient/client.py
+++ b/swiftclient/client.py
@@ -18,7 +18,6 @@ Cloud Files client library used internally
"""
import socket
-import os
import sys
import logging
import warnings
@@ -99,11 +98,9 @@ def encode_utf8(value):
try:
# simplejson is popular and pretty good
from simplejson import loads as json_loads
- from simplejson import dumps as json_dumps
except ImportError:
# 2.6 will have a json module in the stdlib
from json import loads as json_loads
- from json import dumps as json_dumps
class ClientException(Exception):