python: remove unused import of the json module

Signed-off-by: Justus Winter <4winter@informatik.uni-hamburg.de>
This commit is contained in:
Justus Winter 2012-05-17 16:55:29 +02:00
parent b9520ef033
commit 5bc5471c54

View file

@ -41,10 +41,6 @@ from .tag import Tags
from .filenames import Filenames
import email
try:
import simplejson as json
except ImportError:
import json
class Message(Python3StringMixIn):