[Bug 1123372] Re: gnome-tweak-tool crashed with SystemError in _on_changed(): error return without exception set

2013-02-20 Thread dino99
Feedback on RR i386

After the latest pygobject 3.7.90 upgrade, now gnome-tweak-tool works
again with issue

so setting that report as fixed

** Changed in: gnome-tweak-tool (Ubuntu)
   Status: Confirmed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1123372

Title:
  gnome-tweak-tool crashed with SystemError in _on_changed(): error
  return without exception set

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-tweak-tool/+bug/1123372/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1123372] Re: gnome-tweak-tool crashed with SystemError in _on_changed(): error return without exception set

2013-02-19 Thread serge wagner
thanks a lot for this patch

finally gnome-tweak-tool works again :)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1123372

Title:
  gnome-tweak-tool crashed with SystemError in _on_changed(): error
  return without exception set

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-tweak-tool/+bug/1123372/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1123372] Re: gnome-tweak-tool crashed with SystemError in _on_changed(): error return without exception set

2013-02-19 Thread Ursula Junque
So launchpad ruined the diff, hehe: http://pastebin.ubuntu.com/1684419/

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1123372

Title:
  gnome-tweak-tool crashed with SystemError in _on_changed(): error
  return without exception set

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-tweak-tool/+bug/1123372/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1123372] Re: gnome-tweak-tool crashed with SystemError in _on_changed(): error return without exception set

2013-02-19 Thread Ursula Junque
I don't know the side effects of making it return 0, so after a bit of
poking in the code I realized it's crashing inside the set_properties
method, which is failing and not setting a proper exception.
set_property, on the other hand, that does the same but one property at
a time, works fine. What I did was to replace one call of set_properties
for three calls of set_property, like this:

--- tweakview.py2012-10-29 15:06:50.0 -0200
+++ /home/ursula/tweakview.py   2013-02-19 18:36:47.952766792 -0300
@@ -174,19 +174,19 @@
 def _search_cancel(self):
 self._search_cancel_cb()
 self._entry.set_text("")
-
+
 def _on_changed(self, entry):
 if not self._entry.get_text():
-self._entry.set_properties(
-secondary_icon_name="edit-find" + EntryManager.SYMBOLIC,
-secondary_icon_activatable=False,
-secondary_icon_sensitive=False)
+self._entry.set_property("secondary_icon_name",
+ "edit-find" + EntryManager.SYMBOLIC)
+self._entry.set_property("secondary_icon_activatable", False)
+self._entry.set_property("secondary_icon_sensitive", False)
 else:
-self._entry.set_properties(
-secondary_icon_name="edit-clear" + EntryManager.SYMBOLIC,
-secondary_icon_activatable=True,
-secondary_icon_sensitive=True)
-
+self._entry.set_property("secondary_icon_name",
+ "edit-clear" + EntryManager.SYMBOLIC)
+self._entry.set_property("secondary_icon_activatable", True)
+self._entry.set_property("secondary_icon_sensitive", True)
+
 def _on_key_press(self, entry, event):
 if event.keyval == Gdk.KEY_Return:
 self._search()


Of course it needs a better investigation for a proper fix, preferentially by 
someone that understands the inner workings of GObject, but it kinda works with 
this workaround.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1123372

Title:
  gnome-tweak-tool crashed with SystemError in _on_changed(): error
  return without exception set

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-tweak-tool/+bug/1123372/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1123372] Re: gnome-tweak-tool crashed with SystemError in _on_changed(): error return without exception set

2013-02-19 Thread Rodrigo Chiossi
As a temporary workaround to be able to run gnome-tweak-tool, you can
replace the code in _on_changed() to "return 0" in the file
/usr/lib/python2.7/dist-packages/gtweak/tweakview.py

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1123372

Title:
  gnome-tweak-tool crashed with SystemError in _on_changed(): error
  return without exception set

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-tweak-tool/+bug/1123372/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1123372] Re: gnome-tweak-tool crashed with SystemError in _on_changed(): error return without exception set

2013-02-16 Thread Michael Staengl
I have Gnome Shell installed from official Ubuntu repositories
Additionally I have Cinnamon installed from Gwendal le Bihans nightly PPA, 
until now I used Unity Staging PPA and I am using the Webupd8 main repository 
in order to install AWN and newest Minitube.
In Addition to that, I installed the KDE 4.10 from regular sources.
The only difference between detailed bug report is the architecture. I am 
running an AMD 64 System.

Terminal output while trying to start Gnome Tweak Tool is:

** (gnome-tweak-tool:18507): WARNING **: Can't load fallback CSS
resource: Failed to import: The resource at '/org/gnome/adwaita/gtk-
fallback.css' does not exist

** (gnome-tweak-tool:18507): WARNING **: Can't load fallback CSS resource: 
Failed to import: The resource at '/org/gnome/adwaita/gtk-fallback.css' does 
not exist
Fontconfig warning: "/etc/fonts/conf.d/50-user.conf", line 9: reading 
configurations from ~/.fonts.conf is deprecated.
Traceback (most recent call last):
  File "/usr/bin/gnome-tweak-tool", line 75, in 
MainWindow()
  File "/usr/lib/python2.7/dist-packages/gtweak/mainwindow.py", line 41, in 
__init__
model)
  File "/usr/lib/python2.7/dist-packages/gtweak/tweakview.py", line 55, in 
__init__
self._on_search_cancel)
  File "/usr/lib/python2.7/dist-packages/gtweak/tweakview.py", line 167, in 
__init__
self._on_changed(self._entry)
  File "/usr/lib/python2.7/dist-packages/gtweak/tweakview.py", line 183, in 
_on_changed
secondary_icon_sensitive=False)
SystemError: error return without exception set

I hope this additional Terminal output is helpful for you.

Otherwise thank you for (participating in) creating such a great
operating system like Ubuntu

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1123372

Title:
  gnome-tweak-tool crashed with SystemError in _on_changed(): error
  return without exception set

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-tweak-tool/+bug/1123372/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1123372] Re: gnome-tweak-tool crashed with SystemError in _on_changed(): error return without exception set

2013-02-16 Thread dino99
** Tags added: gnome3

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1123372

Title:
  gnome-tweak-tool crashed with SystemError in _on_changed(): error
  return without exception set

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-tweak-tool/+bug/1123372/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1123372] Re: gnome-tweak-tool crashed with SystemError in _on_changed(): error return without exception set

2013-02-16 Thread psysonic
About current tags for this bug:  raring apport-crash i386 running-unity  
I'm actually running gnome-shell under amd64 (raring) and have the same python 
traceback as in comments above.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1123372

Title:
  gnome-tweak-tool crashed with SystemError in _on_changed(): error
  return without exception set

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-tweak-tool/+bug/1123372/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1123372] Re: gnome-tweak-tool crashed with SystemError in _on_changed(): error return without exception set

2013-02-15 Thread Apport retracing service
** Tags added: running-unity

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1123372

Title:
  gnome-tweak-tool crashed with SystemError in _on_changed(): error
  return without exception set

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-tweak-tool/+bug/1123372/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1123372] Re: gnome-tweak-tool crashed with SystemError in _on_changed(): error return without exception set

2013-02-15 Thread Apport retracing service
** Tags removed: need-duplicate-check

** Changed in: gnome-tweak-tool (Ubuntu)
   Importance: Undecided => Medium

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1123372

Title:
  gnome-tweak-tool crashed with SystemError in _on_changed(): error
  return without exception set

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-tweak-tool/+bug/1123372/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1123372] Re: gnome-tweak-tool crashed with SystemError in _on_changed(): error return without exception set

2013-02-15 Thread Edson T. Marques
Same issue to me...
Traceback (most recent call last):
  File "/usr/bin/gnome-tweak-tool", line 75, in 
MainWindow()
  File "/usr/lib/python2.7/dist-packages/gtweak/mainwindow.py", line 41, in 
__init__
model)
  File "/usr/lib/python2.7/dist-packages/gtweak/tweakview.py", line 55, in 
__init__
self._on_search_cancel)
  File "/usr/lib/python2.7/dist-packages/gtweak/tweakview.py", line 167, in 
__init__
self._on_changed(self._entry)
  File "/usr/lib/python2.7/dist-packages/gtweak/tweakview.py", line 183, in 
_on_changed
secondary_icon_sensitive=False)
Raring 64bit. 
Earlier, the first installation (beta2), it worked for a while, I can not be 
precise about the first upgrade it began to fail.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1123372

Title:
  gnome-tweak-tool crashed with SystemError in _on_changed(): error
  return without exception set

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-tweak-tool/+bug/1123372/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1123372] Re: gnome-tweak-tool crashed with SystemError in _on_changed(): error return without exception set

2013-02-13 Thread Robert Thorneycroft
Just performed a fresh install of the nightly and tried to add gnome-
tweak-tool more or less immediately and got the same issues others
mentioned above.

> gnome-tweak-tool 
Traceback (most recent call last):
  File "/usr/bin/gnome-tweak-tool", line 75, in 
MainWindow()
  File "/usr/lib/python2.7/dist-packages/gtweak/mainwindow.py", line 41, in 
__init__
model)
  File "/usr/lib/python2.7/dist-packages/gtweak/tweakview.py", line 55, in 
__init__
self._on_search_cancel)
  File "/usr/lib/python2.7/dist-packages/gtweak/tweakview.py", line 167, in 
__init__
self._on_changed(self._entry)
  File "/usr/lib/python2.7/dist-packages/gtweak/tweakview.py", line 183, in 
_on_changed
secondary_icon_sensitive=False)
SystemError: error return without exception set

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1123372

Title:
  gnome-tweak-tool crashed with SystemError in _on_changed(): error
  return without exception set

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-tweak-tool/+bug/1123372/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1123372] Re: gnome-tweak-tool crashed with SystemError in _on_changed(): error return without exception set

2013-02-13 Thread Cavsfan
cavsfan@cavsfan-MS-7529:~$ gnome-tweak-tool
Traceback (most recent call last):
  File "/usr/bin/gnome-tweak-tool", line 75, in 
MainWindow()
  File "/usr/lib/python2.7/dist-packages/gtweak/mainwindow.py", line 41, in 
__init__
model)
  File "/usr/lib/python2.7/dist-packages/gtweak/tweakview.py", line 55, in 
__init__
self._on_search_cancel)
  File "/usr/lib/python2.7/dist-packages/gtweak/tweakview.py", line 167, in 
__init__
self._on_changed(self._entry)
  File "/usr/lib/python2.7/dist-packages/gtweak/tweakview.py", line 183, in 
_on_changed
secondary_icon_sensitive=False)
SystemError: error return without exception set

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1123372

Title:
  gnome-tweak-tool crashed with SystemError in _on_changed(): error
  return without exception set

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-tweak-tool/+bug/1123372/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1123372] Re: gnome-tweak-tool crashed with SystemError in _on_changed(): error return without exception set

2013-02-13 Thread Alin Andrei
Same on Raring 64bit, here's the output:

Traceback (most recent call last):
  File "/usr/bin/gnome-tweak-tool", line 75, in 
MainWindow()
  File "/usr/lib/python2.7/dist-packages/gtweak/mainwindow.py", line 41, in 
__init__
model)
  File "/usr/lib/python2.7/dist-packages/gtweak/tweakview.py", line 55, in 
__init__
self._on_search_cancel)
  File "/usr/lib/python2.7/dist-packages/gtweak/tweakview.py", line 167, in 
__init__
self._on_changed(self._entry)
  File "/usr/lib/python2.7/dist-packages/gtweak/tweakview.py", line 183, in 
_on_changed
secondary_icon_sensitive=False)
SystemError: error return without exception set

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1123372

Title:
  gnome-tweak-tool crashed with SystemError in _on_changed(): error
  return without exception set

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-tweak-tool/+bug/1123372/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1123372] Re: gnome-tweak-tool crashed with SystemError in _on_changed(): error return without exception set

2013-02-13 Thread Ben Copeland
I am also affected with 3.8.0-5-generic #10-Ubuntu SMP Thu Feb 7
17:57:08 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1123372

Title:
  gnome-tweak-tool crashed with SystemError in _on_changed(): error
  return without exception set

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-tweak-tool/+bug/1123372/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1123372] Re: gnome-tweak-tool crashed with SystemError in _on_changed(): error return without exception set

2013-02-13 Thread dino99
both unity & gnome tool have the same issue

https://bugs.launchpad.net/unity-tweak-tool/+bug/1122258

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1123372

Title:
  gnome-tweak-tool crashed with SystemError in _on_changed(): error
  return without exception set

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-tweak-tool/+bug/1123372/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1123372] Re: gnome-tweak-tool crashed with SystemError in _on_changed(): error return without exception set

2013-02-12 Thread Doug McMahon
Same with amd64; unity session

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1123372

Title:
  gnome-tweak-tool crashed with SystemError in _on_changed(): error
  return without exception set

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-tweak-tool/+bug/1123372/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1123372] Re: gnome-tweak-tool crashed with SystemError in _on_changed(): error return without exception set

2013-02-12 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: gnome-tweak-tool (Ubuntu)
   Status: New => Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1123372

Title:
  gnome-tweak-tool crashed with SystemError in _on_changed(): error
  return without exception set

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-tweak-tool/+bug/1123372/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs