Author: ianb
Date: 2005-04-22 04:41:27 +0000 (Fri, 22 Apr 2005)
New Revision: 734
Modified:
trunk/SQLObject/sqlobject/manager/command.py
Log:
WSGIKit renamed to Paste
Modified: trunk/SQLObject/sqlobject/manager/command.py
===================================================================
--- trunk/SQLObject/sqlobject/manager/command.py 2005-04-21 15:18:01 UTC (rev 733)
+++ trunk/SQLObject/sqlobject/manager/command.py 2005-04-22 04:41:27 UTC (rev 734)
@@ -4,7 +4,7 @@
import os
import sys
try:
- from wsgikit import pyconfig
+ from paste import pyconfig
except ImportError:
pyconfig = None
@@ -71,7 +71,7 @@
dest='connection_uri')
if pyconfig:
parser.add_option('-f', '--config-file',
- help="The WSGIKit config file that contains the database URI (in the database key)",
+ help="The Paste config file that contains the database URI (in the database key)",
metavar="FILE",
dest="config_file")
if find_modules:
@@ -220,7 +220,7 @@
def config(self):
if getattr(self.options, 'config_file', None):
assert pyconfig, (
- "The --config-file option should not be available without wsgikit.pyconfig installed")
+ "The --config-file option should not be available without paste.pyconfig installed")
config = pyconfig.Config()
config.load(self.options.config_file)
return config
|