gnucash maint: Multiple changes pushed

John Ralls jralls at code.gnucash.org
Thu Apr 25 16:39:38 EDT 2019


Updated	 via  https://github.com/Gnucash/gnucash/commit/a20f3368 (commit)
	 via  https://github.com/Gnucash/gnucash/commit/c48da078 (commit)
	from  https://github.com/Gnucash/gnucash/commit/483f9a4c (commit)



commit a20f3368ae9bd920187cc43ec7b775649dfb78f9
Merge: 483f9a4c8 c48da0782
Author: John Ralls <jralls at ceridwen.us>
Date:   Thu Apr 25 13:38:02 2019 -0700

    Merge Christoph Holtermann's 'fix-deprecated-positional-arguments' into maint.


commit c48da0782434f6636c1d768c211b76a8019fd833
Author: c-holtermann <mail at c-holtermann.net>
Date:   Thu Apr 25 17:16:55 2019 +0200

    fix deprecated positional arguments with the GObject constructor (Bug 797205)

diff --git a/gnucash/python/init.py b/gnucash/python/init.py
index 74094e53f..5659c6a57 100644
--- a/gnucash/python/init.py
+++ b/gnucash/python/init.py
@@ -98,7 +98,7 @@ class Console (cons.Console):
 if False:
     console = Console(argv = [], shelltype = 'python', banner = [['woop', 'title']], size = 100)
 
-    window = Gtk.Window(Gtk.WindowType.TOPLEVEL)
+    window = Gtk.Window(type = Gtk.WindowType.TOPLEVEL)
     window.set_position(Gtk.WindowPosition.CENTER)
     window.set_default_size(800,600)
     window.set_border_width(0)



Summary of changes:
 gnucash/python/init.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



More information about the gnucash-changes mailing list