summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2011-01-17 12:55:33 -0800
committerZac Medico <zmedico@gentoo.org>2011-01-17 12:56:49 -0800
commitb6ab3ea34544e96523febc4bff024c5a2cdeaa48 (patch)
treef079262fe2a1df58bf6ecd0a28e6d0a5b6382244
parent39f62e7d708fcf883da94af1191bfaccec8bb032 (diff)
downloadportage-b6ab3ea34544e96523febc4bff024c5a2cdeaa48.tar.gz
portage-b6ab3ea34544e96523febc4bff024c5a2cdeaa48.tar.bz2
portage-b6ab3ea34544e96523febc4bff024c5a2cdeaa48.zip
Use r'' for regex.
-rw-r--r--pym/portage/dbapi/vartree.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/dbapi/vartree.py b/pym/portage/dbapi/vartree.py
index b7ce82391..ccf239ff1 100644
--- a/pym/portage/dbapi/vartree.py
+++ b/pym/portage/dbapi/vartree.py
@@ -1196,7 +1196,7 @@ class dblink(object):
r'(?P<dir>(dev|dir|fif) (.+))|' + \
r'(?P<obj>(obj) (.+) (\S+) (\d+))|' + \
r'(?P<sym>(sym) (.+) -> (.+) ((\d+)|(?P<oldsym>(' + \
- '\(\d+, \d+L, \d+L, \d+, \d+, \d+, \d+L, \d+, (\d+), \d+\)))))' + \
+ r'\(\d+, \d+L, \d+L, \d+, \d+, \d+, \d+L, \d+, (\d+), \d+\)))))' + \
r')$'
)