Change in osmocom-bb[master]: trx_toolkit/fake_trx.py: use raw string notation for regex

This is merely a historical archive of years 2008-2021, before the migration to mailman3.

A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.

fixeria gerrit-no-reply at lists.osmocom.org
Mon May 3 18:45:33 UTC 2021


fixeria has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmocom-bb/+/24106 )


Change subject: trx_toolkit/fake_trx.py: use raw string notation for regex
......................................................................

trx_toolkit/fake_trx.py: use raw string notation for regex

This way there is no need to escape backslashes in regex.

Change-Id: I1b2b6675851275bd5285ffc287410535b22055ae
---
M src/target/trx_toolkit/fake_trx.py
1 file changed, 1 insertion(+), 1 deletion(-)



  git pull ssh://gerrit.osmocom.org:29418/osmocom-bb refs/changes/06/24106/1

diff --git a/src/target/trx_toolkit/fake_trx.py b/src/target/trx_toolkit/fake_trx.py
index 6f46473..88417f7 100755
--- a/src/target/trx_toolkit/fake_trx.py
+++ b/src/target/trx_toolkit/fake_trx.py
@@ -483,7 +483,7 @@
 	@staticmethod
 	def trx_def(val):
 		try:
-			result = re.match("(.+@)?(.+):([0-9]+)(\/[0-9]+)?", val)
+			result = re.match(r"(.+@)?(.+):([0-9]+)(/[0-9]+)?", val)
 			(name, addr, port, idx) = result.groups()
 		except:
 			raise argparse.ArgumentTypeError("Invalid TRX definition: %s" % val)

-- 
To view, visit https://gerrit.osmocom.org/c/osmocom-bb/+/24106
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings

Gerrit-Project: osmocom-bb
Gerrit-Branch: master
Gerrit-Change-Id: I1b2b6675851275bd5285ffc287410535b22055ae
Gerrit-Change-Number: 24106
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <vyanitskiy at sysmocom.de>
Gerrit-MessageType: newchange
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20210503/acf74120/attachment.htm>


More information about the gerrit-log mailing list