From 44ff0d2fce7fdda508d8f1d60e25a492e8dd34be Mon Sep 17 00:00:00 2001 From: Bryan Schumaker Date: Tue, 23 Nov 2010 20:16:03 -0500 Subject: [PATCH] Move buttons and image They now live in ocarina.components, since they are used to build higher level objects --- ocarina/components/__init__.py | 0 ocarina/{ => components}/button.py | 0 ocarina/{ => components}/image.py | 0 ocarina/info.py | 2 +- 4 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 ocarina/components/__init__.py rename ocarina/{ => components}/button.py (100%) rename ocarina/{ => components}/image.py (100%) diff --git a/ocarina/components/__init__.py b/ocarina/components/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/ocarina/button.py b/ocarina/components/button.py similarity index 100% rename from ocarina/button.py rename to ocarina/components/button.py diff --git a/ocarina/image.py b/ocarina/components/image.py similarity index 100% rename from ocarina/image.py rename to ocarina/components/image.py diff --git a/ocarina/info.py b/ocarina/info.py index fcfe910c..32869034 100644 --- a/ocarina/info.py +++ b/ocarina/info.py @@ -167,7 +167,7 @@ def init(): global label global image - import button + from components import button import entry import pbar import label