summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Ebert <blacktrash@gmx.net>2011-06-19 00:33:10 +0200
committerChristian Ebert <blacktrash@gmx.net>2011-06-19 00:33:10 +0200
commit293e480444847258dcb99d36ed5a3224cbc66f51 (patch)
treeede79a7eb6f5cb5f35d97a8eb589877016245c90
parent73b7513c4e9fe5b2b9087641081292bf969f6fbc (diff)
downloadpygments-293e480444847258dcb99d36ed5a3224cbc66f51.tar.gz
other: fix typo in raw string continuation
Introduced in 50cee44f8cff. Strangely enough no traceback with python 2.7, but with python 2.5.
-rw-r--r--pygments/lexers/other.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/other.py b/pygments/lexers/other.py
index 88236a26..0dff1104 100644
--- a/pygments/lexers/other.py
+++ b/pygments/lexers/other.py
@@ -955,7 +955,7 @@ class LogtalkLexer(RegexLexer):
'entityrelations': [
(r'(complements|extends|i(nstantiates|mp(lements|orts))|specializes)'
- b'(?=[(])', Keyword),
+ r'(?=[(])', Keyword),
# Numbers
(r"0'.", Number),
(r'0b[01]+', Number),