Fix filter name for availability zone Fix bug assuming dict keys are ordered Fix tests Fix tests Fix bug
12 lines
189 B
Python
12 lines
189 B
Python
from __future__ import unicode_literals
|
|
from .responses import EC2Response
|
|
|
|
|
|
url_bases = [
|
|
"https?://ec2.(.+).amazonaws.com(|.cn)",
|
|
]
|
|
|
|
url_paths = {
|
|
'{0}/': EC2Response.dispatch,
|
|
}
|