From 559fcdf51ca189ce24e87331393697ec62a1c952 Mon Sep 17 00:00:00 2001 From: Andrew Resch Date: Mon, 10 Dec 2007 10:26:44 +0000 Subject: [PATCH] Move component.py up one level. --- deluge/{ui => }/component.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename deluge/{ui => }/component.py (99%) diff --git a/deluge/ui/component.py b/deluge/component.py similarity index 99% rename from deluge/ui/component.py rename to deluge/component.py index d824ec244..85e4f3cb8 100644 --- a/deluge/ui/component.py +++ b/deluge/component.py @@ -141,7 +141,7 @@ class ComponentRegistry: _ComponentRegistry = ComponentRegistry() def register(name, obj, depend=None): - """Registers a UI component with the registry""" + """Registers a component with the registry""" _ComponentRegistry.register(name, obj, depend) def start():