cc-3936: Fixed bug where owner assignment statement was missing.

This commit is contained in:
Rudi Grinberg 2012-08-27 11:21:20 -04:00
parent d4bead4bd9
commit c05fd2baed
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ class BaseEvent(Loggable):
method is used by various events that would like to pass owner as a
parameter. NewFile for example.
"""
if self.owner != -1: req['MDATA_KEY_OWNER_ID']
if self.owner != -1: req['MDATA_KEY_OWNER_ID'] = self.owner
class FakePyinotify(object):
"""