diff options
author | Jim Carroll <thecarrolls@jiminger.com> | 2011-04-17 07:40:00 -0400 |
---|---|---|
committer | Jim Carroll <thecarrolls@jiminger.com> | 2011-04-18 13:18:01 -0400 |
commit | 8d59bb30bc2baed629ff33789ac44059e1697794 (patch) | |
tree | 6185e20960d6b8ee437981887f708a807cd92504 /addons/script.module.pysqlite | |
parent | 9c356e2944be07bb77a45c54745aca529fb0ff7f (diff) |
Being less excessive. :)
Diffstat (limited to 'addons/script.module.pysqlite')
-rw-r--r-- | addons/script.module.pysqlite/lib/pysqlite2/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/addons/script.module.pysqlite/lib/pysqlite2/__init__.py b/addons/script.module.pysqlite/lib/pysqlite2/__init__.py index f8c66ec1fc..d3b3186485 100644 --- a/addons/script.module.pysqlite/lib/pysqlite2/__init__.py +++ b/addons/script.module.pysqlite/lib/pysqlite2/__init__.py @@ -22,8 +22,8 @@ if (float(xbmcapiversion) <= 1.0): warnings.warn("Unable to import sqlite3. This probably means you're on a version of python prior to 2.5 and trying to run an old script.") raise e - # whine like a sissy ... - warnings.warn("DeprecationWarning: the pysqlite2 module is deprecated; stop being lazy and change your script to use sqlite3.") + # ask politely :) + warnings.warn("DeprecationWarning: the pysqlite2 module is deprecated; please change your script to use sqlite3.") else: raise DeprecationWarning("You cannot use pysqlite2 while depending on version " + str(xbmcapiversion) + " of the xbmc.python api. Please use sqlite3 instead.") |