summaryrefslogtreecommitdiffstats
path: root/src/virtBootstrap/sources
diff options
context:
space:
mode:
Diffstat (limited to 'src/virtBootstrap/sources')
-rw-r--r--src/virtBootstrap/sources/docker_source.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/virtBootstrap/sources/docker_source.py b/src/virtBootstrap/sources/docker_source.py
index 572018f..30a3e2e 100644
--- a/src/virtBootstrap/sources/docker_source.py
+++ b/src/virtBootstrap/sources/docker_source.py
@@ -104,7 +104,7 @@ class DockerSource(object):
# Ref: https://github.com/containers/image/blob/master/image/oci.go
for layer_digest in image_details['Layers']:
sum_type, layer_sum = layer_digest.split(':')
- self.checksums.append([sum_type, layer_sum]) # Store checksums
+ self.checksums.append([sum_type, layer_sum]) # Store checksums
# Layers are tar files with hashsum used as name
file_path = os.path.join(self.images_dir, layer_sum + '.tar')