File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -340,8 +340,8 @@ def get_option(s):
340340 '%(NAME_VERSION)s'
341341 '$' % locals ()).match
342342
343- PLATS = re .compile ('^ (?P<platform>.*)$' ).match
344- BUNDLED_WITH = re .compile ('^\s+(?P<version>(?:\d+.)+\d+)\s*$' ).match
343+ PLATS = re .compile (r '^ (?P<platform>.*)$' ).match
344+ BUNDLED_WITH = re .compile (r '^\s+(?P<version>(?:\d+.)+\d+)\s*$' ).match
345345
346346
347347class GemfileLockParser :
Original file line number Diff line number Diff line change 2323import re
2424
2525ASCII_BYTE = (
26- " !\" #\$%&\' \(\)\*\+,-\./0123456789:;<=>\?@ABCDEFGHIJKLMNOPQRSTUVWXYZ"
27- "\[\]\^_`abcdefghijklmnopqrstuvwxyz\{\|\}\\ \~\t "
26+ r " !\"#\$%&\'\(\)\*\+,-\./0123456789:;<=>\?@ABCDEFGHIJKLMNOPQRSTUVWXYZ"
27+ r "\[\]\^_`abcdefghijklmnopqrstuvwxyz\{\|\}\\\~\t"
2828)
2929
3030
You can’t perform that action at this time.
0 commit comments