remove unnecessary line.

This commit is contained in:
shirou 2014-08-14 22:49:09 +09:00
parent 140ea6086a
commit f47beb8c3f
2 changed files with 0 additions and 2 deletions

View File

@ -139,7 +139,6 @@ class GraphvizSimple(Directive):
def render_dot(self, code, options, format, prefix='graphviz'): def render_dot(self, code, options, format, prefix='graphviz'):
"""Render graphviz code into a PNG or PDF output file.""" """Render graphviz code into a PNG or PDF output file."""
hashkey = (code + str(options) + \ hashkey = (code + str(options) + \
str(self.builder.config.graphviz_dot) + \ str(self.builder.config.graphviz_dot) + \
str(self.builder.config.graphviz_dot_args) str(self.builder.config.graphviz_dot_args)

View File

@ -52,7 +52,6 @@ from sphinx.ext.graphviz import render_dot_html, render_dot_latex, \
render_dot_texinfo render_dot_texinfo
from sphinx.pycode import ModuleAnalyzer from sphinx.pycode import ModuleAnalyzer
from sphinx.util.compat import Directive from sphinx.util.compat import Directive
from sphinx.util import get_module_source
class_sig_re = re.compile(r'''^([\w.]*\.)? # module names class_sig_re = re.compile(r'''^([\w.]*\.)? # module names