From 4f2cb6552dc282a28c07c85b5d866cbcead6ac0b Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 30 Apr 2014 21:02:08 +0530 Subject: [PATCH] pep8 --- src/calibre/utils/smartypants.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/calibre/utils/smartypants.py b/src/calibre/utils/smartypants.py index 4198d3d469..51079e4e47 100644 --- a/src/calibre/utils/smartypants.py +++ b/src/calibre/utils/smartypants.py @@ -859,8 +859,8 @@ def _tokenize(str): tokens = [] - #depth = 6 - #nested_tags = "|".join(['(?:<(?:[^<>]',] * depth) + (')*>)' * depth) + # depth = 6 + # nested_tags = "|".join(['(?:<(?:[^<>]',] * depth) + (')*>)' * depth) # match = r"""(?: ) | # comments # (?: <\? .*? \?> ) | # directives # %s # nested tags """ % (nested_tags,)