Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIgnacio Rodríguez <ignaciorodriguez@sugarlabs.org>2013-05-05 17:30:49 (GMT)
committer Ignacio Rodríguez <ignaciorodriguez@sugarlabs.org>2013-05-05 17:30:49 (GMT)
commitc3397afa2d218d79ae329c882b0058b91a05d55c (patch)
tree7e4eed90e435654c9730e9743a692bc9cf379dd1
parent71c719af4243b8b6471f675b4f865cd5e5b4d067 (diff)
Innecesario.
-rw-r--r--Main.py29
1 files changed, 0 insertions, 29 deletions
diff --git a/Main.py b/Main.py
deleted file mode 100644
index e2856bd..0000000
--- a/Main.py
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/usr/bin/env python
-# -*- coding: utf-8 -*-
-
-import sys
-
-from gi.repository import Gtk
-
-
-class GnomeExplorer(Gtk.Window):
-
- def __init__(self):
-
- Gtk.Window.__init__(self)
-
- self.connect('destroy', self.salir)
-
- self.show_all()
-
- def salir(self, widget=None):
- """
- Cierra la aplicación.
- """
-
- sys.exit(0)
-
-if __name__ == '__main__':
-
- GnomeExplorer()
- Gtk.main()