Chromium Code Reviews| Index: appengine/findit/common/base_handler.py |
| diff --git a/appengine/findit/common/base_handler.py b/appengine/findit/common/base_handler.py |
| index 11dd5f3b7fd5408b3dac022ef93b46eaf16de496..165175f9fdc86c05773656c92092f27997b1991d 100644 |
| --- a/appengine/findit/common/base_handler.py |
| +++ b/appengine/findit/common/base_handler.py |
| @@ -23,10 +23,8 @@ JINJA_ENVIRONMENT = jinja2.Environment( |
| def ToJson(data): |
| return json.dumps(data, sort_keys=True) # Sort by key to keep order on UI. |
| - |
|
chanli
2016/06/24 18:24:20
This two lines should not be deleted.
josiahk
2016/06/27 19:33:25
Done.
lijeffrey
2016/06/27 20:38:22
I think gpylin will complain if there aren't 2 lin
josiahk
2016/06/28 22:59:23
Fixed. Thanks!
|
| JINJA_ENVIRONMENT.filters['tojson'] = ToJson |
| - |
|
lijeffrey
2016/06/27 20:38:22
It also doesn't seem like there are any functional
|
| class Permission(object): |
| ADMIN = 0 |
| CORP_USER = 8 |