summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-text/calibre/files/calibre-1.34-C-locale.patch')
-rw-r--r--app-text/calibre/files/calibre-1.34-C-locale.patch11
1 files changed, 0 insertions, 11 deletions
diff --git a/app-text/calibre/files/calibre-1.34-C-locale.patch b/app-text/calibre/files/calibre-1.34-C-locale.patch
deleted file mode 100644
index 6a91d942bf90..000000000000
--- a/app-text/calibre/files/calibre-1.34-C-locale.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/src/calibre/spell/dictionary.py 2014-05-01 11:38:04.051290252 -0400
-+++ b/src/calibre/spell/dictionary.py 2014-05-01 11:37:55.061290088 -0400
-@@ -52,7 +52,7 @@
- raw = raw or ''
- parts = raw.replace('_', '-').split('-')
- lc = canonicalize_lang(parts[0])
-- if lc is None:
-+ if lc is None and raw != 'C':
- raise ValueError('Invalid language code: %r' % raw)
- cc = None
- if len(parts) > 1: