diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2018-04-07 15:20:11 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2018-04-23 10:17:50 +0200 |
commit | 6e3db40b8bccc13b106b63de31de1b8d7b9348cb (patch) | |
tree | 2a6c377fe5b7c084ae62a9cb20ab17450c2c0666 /bin | |
parent | 5c961a0412467d444dc7bc92a4573f1769b7dc53 (diff) |
Fix typo in variable
Change-Id: I9ff961e9d6558478e72098a74048a5957299a953
Reviewed-on: https://gerrit.libreoffice.org/52547
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/find-unneeded-includes | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/find-unneeded-includes b/bin/find-unneeded-includes index 9723ceffbfb9..de91a3570231 100755 --- a/bin/find-unneeded-includes +++ b/bin/find-unneeded-includes @@ -117,7 +117,7 @@ def processIWYUOutput(iwyuOutput, moduleRules): match = re.match("(.*) should add these lines:$", line) if match: - currrentFileName = match.group(1) + currentFileName = match.group(1) inAdd = True continue |