Author: Andreas Tille <tille@debian.org>
Last-Update: 2026-02-08
Bug-Debian: https://bugs.debian.org/1085788
Description: Avoid Python3 syntax warning

--- a/presentty/rst.py
+++ b/presentty/rst.py
@@ -49,7 +49,7 @@ class TextAccumulator(object):
     def getFormattedText(self):
         return self.text
 
-    wsre = re.compile('\s+')
+    wsre = re.compile(r'\s+')
 
     def getFlowedText(self):
         ret = []
