[projects/pld-builder.new] More python 3.13 compatibility: use raw strings for regexes
baggins
baggins at pld-linux.org
Tue Mar 18 10:29:43 CET 2025
commit ac81b583479799ad5b774af0b604fced0e580688
Author: Jan Rękorajski <baggins at pld-linux.org>
Date: Tue Mar 18 09:20:31 2025 +0100
More python 3.13 compatibility: use raw strings for regexes
/home/pld/builderth/pld-builder.new/PLD_Builder/file_sender.py:119: SyntaxWarning: invalid escape sequence '\+'
m = re.match('ssh\+rsync://([^@:]+@[^/:]+)(:|)(.*)', target)
PLD_Builder/file_sender.py | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/PLD_Builder/file_sender.py b/PLD_Builder/file_sender.py
index 3ebf240..58c0ecf 100644
--- a/PLD_Builder/file_sender.py
+++ b/PLD_Builder/file_sender.py
@@ -108,18 +108,18 @@ def send_file(src, target):
global problems
try:
log.notice("sending %s to %s (size %d bytes)" % (src, target, os.stat(src).st_size))
- m = re.match('rsync://([^/]+)/.*', target)
+ m = re.match(r'rsync://([^/]+)/.*', target)
if m:
return not rsync_file(src, target, host = m.group(1))
if target != "" and target[0] == '/':
return not copy_file(src, target)
- m = re.match('scp://([^@:]+@[^/:]+)(:|)(.*)', target)
+ m = re.match(r'scp://([^@:]+@[^/:]+)(:|)(.*)', target)
if m:
return not scp_file(src, m.group(1) + ":" + m.group(3))
- m = re.match('ssh\+rsync://([^@:]+@[^/:]+)(:|)(.*)', target)
+ m = re.match(r'ssh\+rsync://([^@:]+@[^/:]+)(:|)(.*)', target)
if m:
return not rsync_ssh_file(src, m.group(1) + ":" + m.group(3))
- m = re.match('(http|https)://.*', target)
+ m = re.match(r'(http|https)://.*', target)
if m:
return not post_file(src, target)
log.alert("unsupported protocol: %s" % target)
================================================================
---- gitweb:
http://git.pld-linux.org/gitweb.cgi/projects/pld-builder.new.git/commitdiff/ac81b583479799ad5b774af0b604fced0e580688
More information about the pld-cvs-commit
mailing list