summaryrefslogtreecommitdiff
path: root/bin/find-unused-sid-commands.py
diff options
context:
space:
mode:
Diffstat (limited to 'bin/find-unused-sid-commands.py')
-rwxr-xr-xbin/find-unused-sid-commands.py2
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()