Skip to content
This repository has been archived by the owner on Mar 23, 2019. It is now read-only.

Commit

Permalink
Fix missed rebase conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
ryansb committed Aug 7, 2017
1 parent 9b862de commit b272173
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 20 deletions.
15 changes: 3 additions & 12 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
Ansible Container has been contribued to by the following authors:
This list is automatically generated - please file an issue for corrections)

Joshua "jag" Ginsberg <[email protected]>
Chris Houseknecht <[email protected]>
Joshua "jag" Ginsberg <[email protected]>
Ryan Brown <[email protected]>
Shubham Minglani <[email protected]>
Matt Clay <[email protected]>
Pierre-Louis Bonicoli <[email protected]>
Matt Clay <[email protected]>
Greg DeKoenigsberg <[email protected]>
Sandra Wills <[email protected]>
Eric D. Helms <[email protected]>
Expand All @@ -18,8 +18,8 @@ Dylan Silva <[email protected]>
Tomas Tomecek <[email protected]>
Fabian von Feilitzsch <[email protected]>
Charlie Drage <[email protected]>
Roderick Randolph <[email protected]>
Marcus Levine <[email protected]>
Roderick Randolph <[email protected]>
Will Refvem <[email protected]>
Sebastien Plisson <[email protected]>
Mike Hume <[email protected]>
Expand Down Expand Up @@ -52,12 +52,3 @@ szinck1 <[email protected]>
Erik Nelson <[email protected]>
Chrrrles Paul <[email protected]>
Andrea De Pirro <[email protected]>
Aaron Cowdin <[email protected]>
fignew <[email protected]>
Gabor Lekeny <[email protected]>
John R Barker <[email protected]>
Sidharth Surana <[email protected]>
grimmjow <[email protected]>
Shea Stewart <[email protected]>
koralsky <[email protected]>
Michael Carden <[email protected]>
5 changes: 0 additions & 5 deletions container/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -324,13 +324,8 @@ def _process_defaults(self):
dict(processed)))

def _process_top_level_sections(self):
<<<<<<< HEAD
self._config['settings'] = self._config.get('settings', yaml.compat.ordereddict())
for section in ['volumes', 'registries', 'secrets']:
=======
self._config['settings'] = self._config.get('settings', ordereddict())
for section in ['volumes', 'registries']:
>>>>>>> Work around ordereddict failures.
logger.debug('Processing section...', section=section)
setattr(self, section, dict(self._process_section(self._config.get(section, ordereddict()))))

Expand Down
6 changes: 3 additions & 3 deletions container/docker/engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
import tarfile

from ruamel.yaml.comments import CommentedMap
from six import reraise, iteritems, string_types
from six import reraise, iteritems, string_types, PY3

if six.PY3:
if PY3:
from functools import reduce
try:
import httplib as StatusCodes
Expand Down Expand Up @@ -962,7 +962,7 @@ def build_conductor_image(self, base_path, base_image, prebaking=False, cache=Tr
arcname='container-src/conductor-build/conductor-requirements.yml')

utils.jinja_render_to_temp(TEMPLATES_PATH,
'conductor-dockerfile.j2', temp_dir,
'conductor-src-dockerfile.j2', temp_dir,
'Dockerfile',
conductor_base=base_image,
docker_version=DOCKER_VERSION)
Expand Down

0 comments on commit b272173

Please sign in to comment.