diff --git a/dotdrop/utils.py b/dotdrop/utils.py index c07eada..4ce2731 100644 --- a/dotdrop/utils.py +++ b/dotdrop/utils.py @@ -30,6 +30,7 @@ def run(cmd, log=False, raw=True): def diff(src, dst, log=False, raw=True, opts=''): + ''' call diff to compare two files ''' cmd = 'diff -r %s \"%s\" \"%s\"' % (opts, src, dst) return run(shlex.split(cmd), log=log, raw=raw)