# HG changeset patch # User catherine@dellzilla # Date 1237919175 14400 # Node ID 569cba4da16214ae266434ee2c0d017549ceb9d6 # Parent d727f209acf964e9530a9f88d3d1fcdb621c1086 tweaking documentation diff -r d727f209acf9 -r 569cba4da162 setup.py --- 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'], diff -r d727f209acf9 -r 569cba4da162 sqlpython/sqlpyPlus.py --- 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)