From db1bea9cd5139c521effe47966ecb3c34fc186c7 Mon Sep 17 00:00:00 2001 From: Radostin Stoyanov Date: Tue, 27 Feb 2018 21:20:07 +0000 Subject: pylint: Resolve - two spaces before comment E261 at least two spaces before inline comment Signed-off-by: Radostin Stoyanov --- src/virtBootstrap/sources/docker_source.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/virtBootstrap') 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') -- cgit