From 3533497b5857306167bf7120f3fa4ff6d2f2b347 Mon Sep 17 00:00:00 2001 From: Arjun Singh Date: Thu, 27 Sep 2012 02:23:42 -0700 Subject: [PATCH] Restart server when xmodule css changes (run_watch_data) --- run_watch_data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_watch_data.py b/run_watch_data.py index c6cdd4f0df..ff653cfa37 100755 --- a/run_watch_data.py +++ b/run_watch_data.py @@ -17,7 +17,7 @@ from watchdog.events import LoggingEventHandler, FileSystemEventHandler # watch fewer or more extensions, you can change EXTENSIONS. To watch all # extensions, add "*" to EXTENSIONS. -WATCH_DIRS = ["../data", "common/lib/xmodule/xmodule/js"] +WATCH_DIRS = ["../data", "common/lib/xmodule/xmodule/js", "common/lib/xmodule/xmodule/css"] EXTENSIONS = ["*", "xml", "js", "css", "coffee", "scss", "html"] WATCH_DIRS = [os.path.abspath(os.path.normpath(dir)) for dir in WATCH_DIRS]