diff options
| author | Chris Shenton <chris@koansys.com> | 2011-11-07 17:36:16 -0800 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2011-11-08 14:53:48 -0800 |
| commit | 2f644cada6887480da1e264928d9980b0f9c1d97 (patch) | |
| tree | 62c11012086875a2c733f23428bccf47d461b30f | |
| parent | 29ce3d80418835a091ace00e2ec3a632f71f1577 (diff) | |
| download | pyramid-2f644cada6887480da1e264928d9980b0f9c1d97.tar.gz pyramid-2f644cada6887480da1e264928d9980b0f9c1d97.tar.bz2 pyramid-2f644cada6887480da1e264928d9980b0f9c1d97.zip | |
We don't yet have mechanism to specify other files to monitor.
So comment out the checks for the nonexistent requires_config_file.
Server still runs and monitors our file changes.
| -rw-r--r-- | pyramid/scripts/pserve.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyramid/scripts/pserve.py b/pyramid/scripts/pserve.py index a2eded80a..c6e8f0374 100644 --- a/pyramid/scripts/pserve.py +++ b/pyramid/scripts/pserve.py @@ -173,8 +173,8 @@ class PServeCommand(object): if self.verbose > 1: self.out('Running reloading file monitor') install_reloader(int(self.options.reload_interval)) - if self.requires_config_file: - watch_file(self.args[0]) + # if self.requires_config_file: + # watch_file(self.args[0]) else: return self.restart_with_reloader() |
