##// END OF EJS Templates
fix absolute import
Matthias BUSSONNIER -
Show More
@@ -1,8 +1,8 b''
1 1 from __future__ import absolute_import
2 2
3 from converters.html import ConverterHTML
4 from converters.utils import text_cell
5 from converters.utils import highlight, coalesce_streams
3 from .html import ConverterHTML
4 from .utils import text_cell
5 from .utils import highlight, coalesce_streams
6 6
7 7 from IPython.utils import path
8 8 from markdown import markdown
@@ -245,4 +245,4 b' class ConverterReveal(ConverterHTML):'
245 245
246 246 def optional_footer(self):
247 247 optional_footer_body = self.template_split()
248 return optional_footer_body[1] + ['</body>', '</html>'] No newline at end of file
248 return optional_footer_body[1] + ['</body>', '</html>']
General Comments 0
You need to be logged in to leave comments. Login now