summaryrefslogtreecommitdiffstats
path: root/events
diff options
context:
space:
mode:
Diffstat (limited to 'events')
-rw-r--r--events/src/glustereventsd.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/events/src/glustereventsd.py b/events/src/glustereventsd.py
index 4b56eee9131..918c56b6a92 100644
--- a/events/src/glustereventsd.py
+++ b/events/src/glustereventsd.py
@@ -59,7 +59,7 @@ class GlusterEventsRequestHandler(SocketServer.BaseRequestHandler):
try:
# Event Type to Function Map, Recieved event data will be in
# the form <TIMESTAMP> <TYPE> <DETAIL>, Get Event name for the
- # recieved Type/Key and construct a function name starting with
+ # received Type/Key and construct a function name starting with
# handle_ For example: handle_event_volume_create
func_name = "handle_" + all_events[int(key)].lower()
except IndexError: