strip extra arguments
This commit is contained in:
parent
160cec7691
commit
f75e6f6302
1 changed files with 1 additions and 1 deletions
|
@ -803,7 +803,7 @@ class EventsHandler(CollectionHandler):
|
||||||
query['tickets._id'] = ticket_id
|
query['tickets._id'] = ticket_id
|
||||||
ticket_query = {'_id': ticket_id}
|
ticket_query = {'_id': ticket_id}
|
||||||
else:
|
else:
|
||||||
ticket_query = self.arguments
|
ticket_query = arguments
|
||||||
old_ticket_data = {}
|
old_ticket_data = {}
|
||||||
current_event = self.db.query(self.collection, query)
|
current_event = self.db.query(self.collection, query)
|
||||||
if current_event:
|
if current_event:
|
||||||
|
|
Loading…
Reference in a new issue