* python 2.6 compatibility

This commit is contained in:
Nathan Fritz
2010-01-08 06:03:02 +00:00
parent 0af468b435
commit a8ff3586d3
5 changed files with 40 additions and 13 deletions

View File

@@ -1,5 +1,8 @@
from . import base
import queue
try:
import queue
except ImportError:
import Queue as queue
import logging
from .. stanzabase import StanzaBase