From 565d44a5b79c61c8596f05e51a36a4833d94c255 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Sat, 2 Apr 2016 17:10:35 +0200 Subject: [PATCH] fix file hash error event --- src/common/events.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/events.py b/src/common/events.py index e24ed4644..832612b34 100644 --- a/src/common/events.py +++ b/src/common/events.py @@ -161,7 +161,7 @@ class FileCompletedEvent(FileRequestEvent): class FileStoppedEvent(FileRequestEvent): type_ = 'file-stopped' -class FileHashErrorEvent(Event): +class FileHashErrorEvent(FileRequestEvent): type_ = 'file-hash-rror' class JingleIncomingEvent(Event):