Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1557)

Unified Diff: appengine/chromium_committers/appengine_module/chromium_committers/app.py

Issue 1406013008: Support email-style list names in chromium-committers (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/chromium_committers/appengine_module/chromium_committers/app.py
diff --git a/appengine/chromium_committers/appengine_module/chromium_committers/app.py b/appengine/chromium_committers/appengine_module/chromium_committers/app.py
index a4123c6761f2f66856b38e3c07551ce7749f4e79..2bbf4fef890f64a9b7edba6448715c1d94176f55 100644
--- a/appengine/chromium_committers/appengine_module/chromium_committers/app.py
+++ b/appengine/chromium_committers/appengine_module/chromium_committers/app.py
@@ -84,8 +84,8 @@ class UpdateHandler(webapp2.RequestHandler):
app = webapp2.WSGIApplication([
('/', MainPageHandler),
- ('/lists/([a-zA-Z0-9_-]+)', ListHandler),
- ('/update/([a-zA-Z0-9_-]+)', UpdateHandler),
+ ('/lists/([a-zA-Z0-9.@_-]+)', ListHandler),
+ ('/update/([a-zA-Z0-9.@_-]+)', UpdateHandler),
], debug=True)
ep_server = endpoints.api_server([ep_api.CommittersApi])
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698