From 822e24d7870842612a2e304fefe4a5d267b1489b Mon Sep 17 00:00:00 2001 From: Alfredo Deza Date: Mon, 6 Dec 2010 12:19:14 -0500 Subject: [PATCH] making the empty configuration module really empty by removing cruft --- tests/test_config/empty.py | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/tests/test_config/empty.py b/tests/test_config/empty.py index 232e1c9..feb8984 100644 --- a/tests/test_config/empty.py +++ b/tests/test_config/empty.py @@ -1,22 +1,3 @@ app = {} server = {} -# Server Specific Configurations -#server = { -# 'port' : '8081', -# 'host' : '1.1.1.1' -#} - -# Pecan Application Configurations -#app = { -# 'static_root' : 'public', -# 'template_path' : 'myproject/templates', -# 'debug' : True -#} - -# Custom Configurations must be in Python dictionary format:: -# -# foo = {'bar':'baz'} -# -# All configurations are accessible at:: -# pecan.conf