mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
py3 compat
This commit is contained in:
parent
ee44316ac2
commit
7f7204e6eb
@ -1,7 +1,5 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# vim:fileencoding=UTF-8:ts=4:sw=4:sta:et:sts=4:fdm=marker:ai
|
# vim:fileencoding=UTF-8:ts=4:sw=4:sta:et:sts=4:fdm=marker:ai
|
||||||
from __future__ import (unicode_literals, # division, absolute_import,
|
|
||||||
print_function)
|
|
||||||
|
|
||||||
__license__ = 'GPL v3'
|
__license__ = 'GPL v3'
|
||||||
__copyright__ = '2015, Kovid Goyal <kovid at kovidgoyal.net>'
|
__copyright__ = '2015, Kovid Goyal <kovid at kovidgoyal.net>'
|
||||||
@ -278,7 +276,7 @@ class ExtraCustomization(DeviceConfigTab): # {{{
|
|||||||
if isinstance(extra_customization_message, list):
|
if isinstance(extra_customization_message, list):
|
||||||
self.opt_extra_customization = []
|
self.opt_extra_customization = []
|
||||||
if len(extra_customization_message) > 6:
|
if len(extra_customization_message) > 6:
|
||||||
row_func = lambda x, y: ((x/2) * 2) + y
|
row_func = lambda x, y: ((x//2) * 2) + y
|
||||||
col_func = lambda x: x%2
|
col_func = lambda x: x%2
|
||||||
else:
|
else:
|
||||||
row_func = lambda x, y: x*2 + y
|
row_func = lambda x, y: x*2 + y
|
||||||
|
Loading…
x
Reference in New Issue
Block a user