summaryrefslogtreecommitdiffstats
path: root/development/gaphor/fix_zope_component_registry.patch
diff options
context:
space:
mode:
Diffstat (limited to 'development/gaphor/fix_zope_component_registry.patch')
-rw-r--r--development/gaphor/fix_zope_component_registry.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/development/gaphor/fix_zope_component_registry.patch b/development/gaphor/fix_zope_component_registry.patch
deleted file mode 100644
index 36e15aaa41..0000000000
--- a/development/gaphor/fix_zope_component_registry.patch
+++ /dev/null
@@ -1,19 +0,0 @@
---- gaphor/services/componentregistry.py.orig 2012-08-08 13:57:32.000000000 +0300
-+++ gaphor/services/componentregistry.py 2012-08-08 13:57:57.000000000 +0300
-@@ -7,6 +7,7 @@
- """
-
- from zope import interface, component
-+from zope.component import registry
- from gaphor.core import inject
- from gaphor.interfaces import IService, IEventFilter
-
-@@ -27,7 +28,7 @@
- pass
-
- def init(self, app):
-- self._components = component.registry.Components(
-+ self._components = registry.Components(
- name='component_registry',
- bases=(component.getGlobalSiteManager(),))
-