mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Fix SyntaxWarning invalid escape sequence in Python code (#3433)
This commit is contained in:
parent
380c740ff0
commit
b7551cbba6
37 changed files with 156 additions and 156 deletions
|
@ -49,8 +49,8 @@ class TestBug1379(TestCase):
|
|||
self.t.config("color.label.sort", "")
|
||||
|
||||
# For use with regex
|
||||
self.RED = "\033\[31m"
|
||||
self.CLEAR = "\033\[0m"
|
||||
self.RED = "\033\\[31m"
|
||||
self.CLEAR = "\033\\[0m"
|
||||
|
||||
def test_color_BLOCKED(self):
|
||||
"""color.tag.BLOCKED changes color of BLOCKED tasks"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue