diff options
Diffstat (limited to 'bin/find-unused-sid-commands.py')
-rwxr-xr-x | bin/find-unused-sid-commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/find-unused-sid-commands.py b/bin/find-unused-sid-commands.py index 32f45e0f810a..7cdf0cd3be5d 100755 --- a/bin/find-unused-sid-commands.py +++ b/bin/find-unused-sid-commands.py @@ -9,7 +9,7 @@ import subprocess # search for entries in .sdi files that declare UNO/SID commands -a = subprocess.Popen("git grep -P '^\s*\w+Item\s+\w+\s+SID_\w+$' -- *.sdi", stdout=subprocess.PIPE, shell=True) +a = subprocess.Popen(r"git grep -P '^\s*\w+Item\s+\w+\s+SID_\w+$' -- *.sdi", stdout=subprocess.PIPE, shell=True) # parse out the UNO command names commandSet = list() |