Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Main.py
diff options
context:
space:
mode:
Diffstat (limited to 'Main.py')
-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()