From 6a466327168be3e4f4b2cdf5545811872348191a Mon Sep 17 00:00:00 2001 From: Einar Forselv Date: Thu, 18 Apr 2019 05:18:44 +0200 Subject: [PATCH] Remove temp comments --- restic_volume_backup/containers.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/restic_volume_backup/containers.py b/restic_volume_backup/containers.py index 6983e23..00da419 100644 --- a/restic_volume_backup/containers.py +++ b/restic_volume_backup/containers.py @@ -49,12 +49,6 @@ class Container: Return volumes for the container in the following format: {'/home/user1/': {'bind': '/mnt/vol2', 'mode': 'rw'},} """ - # {'Type': 'bind', - # 'Source': '/Users/einarforselv/Documents/projects/contraz/restic-volume-backup', - # 'Destination': '/restic-volume-backup', - # 'Mode': 'rw', - # 'RW': True, - # 'Propagation': 'rprivate'} volumes = {} for mount in self._mounts: volumes[mount.source] = {'bind': mount.destination, 'mode': 'ro'}