tweak sqlite3 info typeout to conform, only output sometimes
This commit is contained in:
parent
5633570250
commit
3ee28584cb
@ -399,10 +399,11 @@ def show_settings():
|
||||
print(' version : %s' % bsddb_str)
|
||||
print(' db version : %s' % bsddb_db_str)
|
||||
print(' location : %s' % bsddb_location_str)
|
||||
print(' sqlite3 :')
|
||||
print(' version : %s' % sqlite3_version_str)
|
||||
print(' py version : %s' % sqlite3_py_version_str)
|
||||
print(' location : %s' % sqlite3_location_str)
|
||||
if __debug__:
|
||||
print(' sqlite3 :')
|
||||
print(' version : %s' % sqlite3_version_str)
|
||||
print(' py version : %s' % sqlite3_py_version_str)
|
||||
print(' location : %s' % sqlite3_location_str)
|
||||
print('')
|
||||
|
||||
def run():
|
||||
|
@ -132,19 +132,22 @@ class GrampsAboutDialog(Gtk.AboutDialog):
|
||||
operatingsystem = sys.platform
|
||||
distribution = " "
|
||||
|
||||
sqlite = ''
|
||||
if __debug__:
|
||||
sqlite = "sqlite: %s (%s)\n" % (sqlite3_version_str,
|
||||
sqlite3_py_version_str)
|
||||
|
||||
return (("\n\n" +
|
||||
"GRAMPS: %s \n" +
|
||||
"Python: %s \n" +
|
||||
"BSDDB: %s \n" +
|
||||
"sqlite: %s (%s)\n" +
|
||||
sqlite +
|
||||
"LANG: %s\n" +
|
||||
"OS: %s\n" +
|
||||
"Distribution: %s")
|
||||
% (ellipses(str(VERSION)),
|
||||
ellipses(str(sys.version).replace('\n','')),
|
||||
BSDDB_STR,
|
||||
sqlite3_version_str,
|
||||
sqlite3_py_version_str,
|
||||
ellipses(get_env_var('LANG','')),
|
||||
ellipses(operatingsystem),
|
||||
ellipses(distribution)))
|
||||
|
Loading…
Reference in New Issue
Block a user