From 12df68bf70d7f47e1b5fc9aa408b90b66834617e Mon Sep 17 00:00:00 2001 From: deadc0de6 Date: Wed, 15 Mar 2017 20:55:54 +0100 Subject: [PATCH] comment --- dotdrop/dotfile.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dotdrop/dotfile.py b/dotdrop/dotfile.py index 34d49e9..388a6c6 100644 --- a/dotdrop/dotfile.py +++ b/dotdrop/dotfile.py @@ -8,9 +8,9 @@ represents a dotfile in dotdrop class Dotfile: def __init__(self, key, dst, src): - self.key = key - self.dst = dst - self.src = src + self.key = key # key of dotfile in the config + self.dst = dst # where to install this dotfile + self.src = src # stored dotfile in dotdrop def __str__(self): string = 'key:%s, src: %s, dst: %s' % (self.key,