Index: third_party/twisted_8_1/twisted/plugins/__init__.py |
diff --git a/third_party/twisted_8_1/twisted/plugins/__init__.py b/third_party/twisted_8_1/twisted/plugins/__init__.py |
deleted file mode 100644 |
index 9bb6d681a55b1b806166cfa2692fb34a74c26959..0000000000000000000000000000000000000000 |
--- a/third_party/twisted_8_1/twisted/plugins/__init__.py |
+++ /dev/null |
@@ -1,17 +0,0 @@ |
-# -*- test-case-name: twisted.test.test_plugin -*- |
-# Copyright (c) 2005 Divmod, Inc. |
-# Copyright (c) 2007 Twisted Matrix Laboratories. |
-# See LICENSE for details. |
- |
-""" |
-Plugins go in directories on your PYTHONPATH named twisted/plugins: |
-this is the only place where an __init__.py is necessary, thanks to |
-the __path__ variable. |
- |
-@author: U{Jp Calderone<mailto:exarkun@twistedmatrix.com>} |
-@author: U{Glyph Lefkowitz<mailto:glyph@twistedmatrix.com>} |
-""" |
- |
-from twisted.plugin import pluginPackagePaths |
-__path__.extend(pluginPackagePaths(__name__)) |
-__all__ = [] # nothing to see here, move along, move along |