summaryrefslogtreecommitdiff
path: root/caribou/antler/window.py
diff options
context:
space:
mode:
Diffstat (limited to 'caribou/antler/window.py')
-rw-r--r--caribou/antler/window.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/caribou/antler/window.py b/caribou/antler/window.py
index 959b825..0061040 100644
--- a/caribou/antler/window.py
+++ b/caribou/antler/window.py
@@ -54,7 +54,7 @@ class AnimatedWindowBase(Gtk.Window, Clutter.Animatable):
elif property.name == "antler-window-y":
return self.get_position()[1]
else:
- raise AttributeError, 'unknown property %s' % property.name
+ raise AttributeError('unknown property %s' % property.name)
def do_set_property(self, property, value):
if property.name == "antler-window-x":
@@ -64,7 +64,7 @@ class AnimatedWindowBase(Gtk.Window, Clutter.Animatable):
if value is not None:
self.move(self.get_position()[0], value)
else:
- raise AttributeError, 'unknown property %s' % property.name
+ raise AttributeError('unknown property %s' % property.name)
def do_animate_property(self, animation, prop_name, initial_value,
final_value, progress, gvalue):