Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Widgets.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Widgets.py b/Widgets.py
index 28a2214..078cf50 100644
--- a/Widgets.py
+++ b/Widgets.py
@@ -8,7 +8,7 @@ from gi.repository import Gtk
from gi.repository import Gdk
from gi.repository import GdkPixbuf
from gi.repository import GObject
-from Globales import *
+import Globales as G
def get_pixbuf(path, x=None, y=None):
@@ -24,7 +24,7 @@ class LogoJoven(Gtk.Image):
def __init__(self):
super(LogoJoven, self).__init__()
- self.set_from_pixbuf(get_pixbuf(LOGO_JOVEN))
+ self.set_from_pixbuf(get_pixbuf(G.LOGO_JOVEN))
self.show_all()
class Marcadores(Gtk.TreeView):