1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-05 17:18:53 +00:00

add comment

This commit is contained in:
deadc0de6
2018-05-02 16:37:35 +02:00
parent 37fe107bf4
commit da0a9197c7

View File

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