diff --git a/scripts/repo.py b/scripts/repo.py index 9263995..35f3f18 100755 --- a/scripts/repo.py +++ b/scripts/repo.py @@ -25,7 +25,7 @@ def getHashChangesSince(self, rhash, branch, file): def getDiffBetween(self, rhash1, rhash2, file): revrange = "%s..%s" %(rhash1, rhash2) - # ignore carage returns for diffs as crlf changed to lf in the repo recently. + # ignore carriage returns for diffs as crlf changed to lf in the repo recently. return self.git['diff', revrange, '--ignore-cr-at-eol', '--', file]() def getFileAt(self, rhash, file):