Skip to content

Commit

Permalink
Fixed logging
Browse files Browse the repository at this point in the history
  • Loading branch information
kroman0 committed Jan 21, 2015
1 parent df332d4 commit f61f9e9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/openprocurement/api/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -252,10 +252,10 @@ def update_journal_handler_role(event):
if isinstance(i, JournalHandler):
i._extra['ROLE'] = str(request.authenticated_role)
if request.params:
params['PARAMS'] = str(dict(request.params))
i._extra['PARAMS'] = str(dict(request.params))
if request.matchdict:
for i, j in request.matchdict.items():
params[i.upper()] = j
for x, j in request.matchdict.items():
i._extra[x.upper()] = j


def cleanup_journal_handler(event):
Expand Down

0 comments on commit f61f9e9

Please sign in to comment.