summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2017-05-03 09:49:27 +0200
committerMichał Górny <mgorny@gentoo.org>2017-05-03 11:26:01 +0200
commitf82d9d8f774dd4f7d2ad924ca1abd81ce9812e7e (patch)
tree559208b7d938e9e0823efd7826c573c4b4eecb56 /dev-python/twisted/files
parentdev-python/pycrypto: Clean old versions up (diff)
downloadgentoo-f82d9d8f774dd4f7d2ad924ca1abd81ce9812e7e.tar.gz
gentoo-f82d9d8f774dd4f7d2ad924ca1abd81ce9812e7e.tar.bz2
gentoo-f82d9d8f774dd4f7d2ad924ca1abd81ce9812e7e.zip
dev-python/twisted: Clean old versions up
Diffstat (limited to 'dev-python/twisted/files')
-rw-r--r--dev-python/twisted/files/twisted-core-9.0.0-respect_TWISTED_DISABLE_WRITING_OF_PLUGIN_CACHE.patch11
1 files changed, 0 insertions, 11 deletions
diff --git a/dev-python/twisted/files/twisted-core-9.0.0-respect_TWISTED_DISABLE_WRITING_OF_PLUGIN_CACHE.patch b/dev-python/twisted/files/twisted-core-9.0.0-respect_TWISTED_DISABLE_WRITING_OF_PLUGIN_CACHE.patch
deleted file mode 100644
index 2fe22f1640b1..000000000000
--- a/dev-python/twisted/files/twisted-core-9.0.0-respect_TWISTED_DISABLE_WRITING_OF_PLUGIN_CACHE.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- twisted/plugin.py
-+++ twisted/plugin.py
-@@ -174,7 +174,7 @@
- if pluginKey not in existingKeys:
- del dropinDotCache[pluginKey]
- needsWrite = True
-- if needsWrite:
-+ if needsWrite and os.environ.get("TWISTED_DISABLE_WRITING_OF_PLUGIN_CACHE") is None:
- try:
- dropinPath.setContent(pickle.dumps(dropinDotCache))
- except: