fix regular expression in python source `bazelci.py` (#2184)
The code;
```
return re.match("^\${{\s*(\w+)\s*}}$", s)
```
Appears to cause a
[warning](https://buildkite.com/bazel/clion-plugin/builds/24866#01953779-eb82-4f1d-b7bb-ee19e6c4fab3)
in the building of the C-Lion Intelli-J / Bazel plugin;
```
/Users/buildkite/builds/bk-macos-arm64-3wgt/bazel/clion-plugin/bazelci.py:834: SyntaxWarning: invalid escape sequence '\$'
return re.match("^\${{\s*(\w+)\s*}}$", s)
```
It looks like the string should be a raw string. Note that this change
has not been tested.
1 file changed