1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-05 12:03:49 +00:00
This commit is contained in:
deadc0de6
2017-03-15 20:55:54 +01:00
parent 370d036d6f
commit 12df68bf70

View File

@@ -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,