Ottomata has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/360854 )

Change subject: Fix extra comma in event_to_table_name that was interpreted as 
tuple
......................................................................

Fix extra comma in event_to_table_name that was interpreted as tuple

Change-Id: Ie4746eac2d6fa469dc506abcf4151dedd989b853
---
M eventlogging/jrm.py
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/eventlogging 
refs/changes/54/360854/1

diff --git a/eventlogging/jrm.py b/eventlogging/jrm.py
index 64a340b..e9243f8 100644
--- a/eventlogging/jrm.py
+++ b/eventlogging/jrm.py
@@ -50,7 +50,7 @@
     except TopicNotFound:
         name = event.schema_name()
 
-    table_name = re.sub('[^A-Za-z0-9]+', '_', name),
+    table_name = re.sub('[^A-Za-z0-9]+', '_', name)
     if with_schema_revision:
         return '{}_{}'.format(table_name, event.schema_revision())
     else:

-- 
To view, visit https://gerrit.wikimedia.org/r/360854
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ie4746eac2d6fa469dc506abcf4151dedd989b853
Gerrit-PatchSet: 1
Gerrit-Project: eventlogging
Gerrit-Branch: master
Gerrit-Owner: Ottomata <[email protected]>

_______________________________________________
MediaWiki-commits mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to