Skip to content

Commit

Permalink
Fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
remram44 committed May 15, 2018
1 parent df0b716 commit 8852242
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion reprounzip-docker/reprounzip/unpackers/docker.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def find_distribution(parameter, distribution, version):
return result
default = parameter['default']
logger.warning("Unsupported distribution '%s', using %s",
distribution, default['name'])
distribution, default['name'])
return default['distribution'], default['image']

def find_version(distrib, version):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def find_distribution(parameter, distribution, version, architecture):
return result
default = parameter['default']
logger.warning("Unsupported distribution '%s', using %s",
distribution, default['name'])
distribution, default['name'])
result = default['architectures'].get(architecture)
if result:
return default['distribution'], result
Expand Down
2 changes: 1 addition & 1 deletion reprounzip/reprounzip/unpackers/common/misc.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ def run(self, files, all_):
remote_path = inputs_outputs[output_name].path
except KeyError:
logger.critical("Invalid output file: %r",
output_name)
output_name)
sys.exit(1)

logger.debug("Downloading file %s", remote_path)
Expand Down

0 comments on commit 8852242

Please sign in to comment.