From 5e9773269a2a1464b845b7cc98b62b3e9d863131 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Thu, 26 Jun 2014 15:16:23 -0400 Subject: [PATCH] Added newline to fix flake8 error. --- django/utils/autoreload.py | 1 + 1 file changed, 1 insertion(+) diff --git a/django/utils/autoreload.py b/django/utils/autoreload.py index 3c2f825cf88..d2369067ab9 100644 --- a/django/utils/autoreload.py +++ b/django/utils/autoreload.py @@ -134,6 +134,7 @@ def inotify_code_changed(): """ class EventHandler(pyinotify.ProcessEvent): modified_code = None + def process_default(self, event): if event.path.endswith('.mo'): EventHandler.modified_code = I18N_MODIFIED