~ubuntu-branches/debian/jessie/calibre/jessie

« back to all changes in this revision

Viewing changes to src/calibre/gui2/tweak_book/editor/smart/__init__.py

  • Committer: Package Import Robot
  • Author(s): Martin Pitt
  • Date: 2014-02-27 07:48:06 UTC
  • mfrom: (1.3.42) (29.4.29 sid)
  • Revision ID: package-import@ubuntu.com-20140227074806-lugbzldfoqzwubkq
Tags: 1.25.0+dfsg-1
* New upstream release.
* debian/rules: Drop the removal of manual/images/valid.png, got dropped
  upstream.
* debian/copyright: Update copyrights, and fix wrong copyright-1.0 syntax.
  Thanks Felix Gruber!
* debian/control: Remove trailing spaces.
* debian/control: Bump minimal dependencies to the versions at
  http://calibre-ebook.com/download_linux. (see #738642)
* debian/rules: Ignore bash completion files, until we figure out what to
  build-depend on to make these files also built in minimal schroots.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python
 
2
# vim:fileencoding=utf-8
 
3
from __future__ import (unicode_literals, division, absolute_import,
 
4
                        print_function)
 
5
 
 
6
__license__ = 'GPL v3'
 
7
__copyright__ = '2014, Kovid Goyal <kovid at kovidgoyal.net>'
 
8
 
 
9
class NullSmarts(object):
 
10
 
 
11
    def __init__(self, editor):
 
12
        pass
 
13
 
 
14
    def get_extra_selections(self, editor):
 
15
        return ()
 
16