changeset 293:569cba4da162

tweaking documentation
author catherine@dellzilla
date Tue, 24 Mar 2009 14:26:15 -0400
parents d727f209acf9
children dd7b3e4b58dd
files setup.py sqlpython/sqlpyPlus.py
diffstat 2 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/setup.py	Tue Mar 24 13:59:11 2009 -0400
+++ b/setup.py	Tue Mar 24 14:26:15 2009 -0400
@@ -9,7 +9,7 @@
 Operating System :: OS Independent""".splitlines()
 
 setup(name="sqlpython",
-      version="1.6.1",
+      version="1.6.2",
       description="Command-line interface to Oracle",
       long_description="Customizable alternative to Oracle's SQL*PLUS command-line interface",
       author="Luca Canali",
@@ -17,7 +17,7 @@
       url="https://twiki.cern.ch/twiki/bin/view/PSSGroup/SqlPython",
       packages=find_packages(),
       include_package_data=True,    
-      install_requires=['pyparsing','cmd2>=0.4.8','cx_Oracle','genshi>=0.5'],
+      install_requires=['pyparsing','cmd2>=0.5.0','cx_Oracle','genshi>=0.5'],
       keywords = 'client oracle database',
       license = 'MIT',
       platforms = ['any'],
--- a/sqlpython/sqlpyPlus.py	Tue Mar 24 13:59:11 2009 -0400
+++ b/sqlpython/sqlpyPlus.py	Tue Mar 24 14:26:15 2009 -0400
@@ -508,7 +508,7 @@
         Past SELECT results are exposed as list `r`; 
             most recent resultset is `r[-1]`.
         SQL bind, substitution variables are exposed as `binds`, `substs`.
-        SQL and sqlpython commands can be issued with sql('your non-python command here').
+        SQL and sqlpython commands can be issued with sql("your non-python command here").
         '''
         return Cmd.do_py(self, arg)