Skip to content

Commit

Permalink
Fix Queue import on python 3
Browse files Browse the repository at this point in the history
  • Loading branch information
Jorge Bastida committed Oct 10, 2015
1 parent aed7988 commit f769596
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion awslogs/core.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
import re
import sys
import time
from Queue import Queue
from threading import Thread, Event
from datetime import datetime, timedelta
from collections import deque
try:
from Queue import Queue
except ImportError:
from queue import Queue

import boto3
from botocore.compat import total_seconds
Expand Down

0 comments on commit f769596

Please sign in to comment.