mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-05 18:53:38 +02:00
Allow importing of PArseException from pyparsing for backwards compatibility with plugins
This commit is contained in:
parent
79eeec929d
commit
01b125350d
1 changed files with 11 additions and 0 deletions
11
src/calibre/utils/pyparsing.py
Normal file
11
src/calibre/utils/pyparsing.py
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
#!/usr/bin/env python
|
||||
# vim:fileencoding=utf-8
|
||||
from __future__ import (unicode_literals, division, absolute_import,
|
||||
print_function)
|
||||
|
||||
__license__ = 'GPL v3'
|
||||
__copyright__ = '2013, Kovid Goyal <kovid at kovidgoyal.net>'
|
||||
|
||||
# Dummy file for backwards compatibility with older plugins
|
||||
from calibre.utils.search_query_parser import ParseException # noqa
|
||||
|
||||
Loading…
Reference in a new issue