Pulizia dei pyc e rinominato l'eseguibile con nome minuscolo

Leonardo Robol [2009-10-02 07:27]
Pulizia dei pyc e rinominato l'eseguibile con nome minuscolo
Filename
DrPrint
DrPrintGui/__init__.pyc
drprint
diff --git a/DrPrint b/DrPrint
deleted file mode 100755
index ce877e4..0000000
--- a/DrPrint
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/usr/bin/env python
-
-import gtk, pygtk
-from DrPrintGui.MainWin import MainWin
-from DrPrintBackend import Backend
-
-if __name__ == "__main__":
-
-
-   ## Load the Backend that will perform
-   ## all the hard work without being seen
-   ## by the end user. That is -- the sad
-   ## story of every backend.
-   backend = Backend()
-
-   ## ...and then the main win! The one
-   ## that will try to attract end user
-   ## with her .. ( find a good word )
-   ## P.S.: We give her a backend, without
-   ## it she will be useless.
-   mw = MainWin(backend)
-
-   ## Show all :)
-   mw.show()
-
-   ## ..and let's go!
-   gtk.main()
diff --git a/DrPrintGui/__init__.pyc b/DrPrintGui/__init__.pyc
deleted file mode 100644
index 1b63e7c..0000000
Binary files a/DrPrintGui/__init__.pyc and /dev/null differ
diff --git a/drprint b/drprint
new file mode 100755
index 0000000..ce877e4
--- /dev/null
+++ b/drprint
@@ -0,0 +1,27 @@
+#!/usr/bin/env python
+
+import gtk, pygtk
+from DrPrintGui.MainWin import MainWin
+from DrPrintBackend import Backend
+
+if __name__ == "__main__":
+
+
+   ## Load the Backend that will perform
+   ## all the hard work without being seen
+   ## by the end user. That is -- the sad
+   ## story of every backend.
+   backend = Backend()
+
+   ## ...and then the main win! The one
+   ## that will try to attract end user
+   ## with her .. ( find a good word )
+   ## P.S.: We give her a backend, without
+   ## it she will be useless.
+   mw = MainWin(backend)
+
+   ## Show all :)
+   mw.show()
+
+   ## ..and let's go!
+   gtk.main()
ViewGit