Skip to content

Commit

Permalink
ec2: Move util to utils, and fix the imports
Browse files Browse the repository at this point in the history
Signed-off-by: Sayan Chowdhury <sayan.chowdhury2012@gmail.com>
  • Loading branch information
sayanchowdhury committed Jul 12, 2017
1 parent 13d13ee commit b0b3569
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions fedimg/consumers.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@

import fedimg.uploader

from fedimg import PROCESS_COUNT, STATUS_FILTER
from fedimg.util import get_rawxz_urls, safeget
from fedimg.config import PROCESS_COUNT, STATUS_FILTER
from fedimg.utils import get_rawxz_urls, safeget


class FedimgConsumer(fedmsg.consumers.FedmsgConsumer):
Expand Down
8 changes: 4 additions & 4 deletions fedimg/services/ec2/ec2initiate.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@

from itertools import product as itertools_product

from fedimg.ec2.config import ACCESS_ID, SECRET_KEY, REGIONS
from fedimg.ec2.config import VOLUME_TYPES, VOLUME_VIA_S3
from fedimg.services.ec2.ec2imageuploader import EC2ImageUploader
from fedimg.services.ec2.ec2imagepublisher import EC2ImagePublisher
from fedimg.services.ec2.config import ACCESS_ID, SECRET_KEY, REGIONS
from fedimg.services.ec2.config import VOLUME_TYPES, VOLUME_VIA_S3
from fedimg.services.ec2.ec2imguploader import EC2ImageUploader
from fedimg.services.ec2.ec2imgpublisher import EC2ImagePublisher
from fedimg.utils import get_virt_types_from_url, get_source_for_image


Expand Down
File renamed without changes.

0 comments on commit b0b3569

Please sign in to comment.