File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -414,7 +414,7 @@ def __get_includegraphics(self, command):
414
414
url = command [1 ][0 ].recombine_as_text ()
415
415
args = dict ()
416
416
if command [1 ][1 ] is not None :
417
- for argPair in re .split ("\s*,\s*" , command [1 ][1 ].recombine_as_text ().strip ()):
417
+ for argPair in re .split (r "\s*,\s*" , command [1 ][1 ].recombine_as_text ().strip ()):
418
418
arg = argPair .split ("=" )
419
419
assert len (arg ) == 2
420
420
args [arg [0 ].strip ()] = arg [1 ].strip ()
@@ -443,7 +443,7 @@ def __get_PSTricks_picture(self, command):
443
443
break
444
444
self .tokens .skip_current ()
445
445
content = self .tokens .get_substring (start , stop ).strip ()
446
- argsList = re .split ("\s*,\s*" , command [2 ][0 ].recombine_as_text ().strip ())
446
+ argsList = re .split (r "\s*,\s*" , command [2 ][0 ].recombine_as_text ().strip ())
447
447
args = dict ()
448
448
for entry in argsList :
449
449
entry = entry .split ("=" )
You can’t perform that action at this time.
0 commit comments