fix wrong guard
This commit is contained in:
parent
234e3d9983
commit
c73cbfffcf
1 changed files with 2 additions and 2 deletions
|
@ -57,11 +57,11 @@ class DTXFormatter(TexFormatter):
|
||||||
|
|
||||||
def format_post_header(self) -> None:
|
def format_post_header(self) -> None:
|
||||||
if self.current_file_name().endswith('.dtx'):
|
if self.current_file_name().endswith('.dtx'):
|
||||||
self._shipout_line('%</internal>')
|
self._shipout_line('%<*internal>')
|
||||||
self._shipout_line(
|
self._shipout_line(
|
||||||
self._get_internal_file(comment=True)
|
self._get_internal_file(comment=True)
|
||||||
)
|
)
|
||||||
self._shipout_line('%<*internal>')
|
self._shipout_line('%</internal>')
|
||||||
self._shipout_line('%')
|
self._shipout_line('%')
|
||||||
self._shipout_line(
|
self._shipout_line(
|
||||||
'%<{outtype}>{provides}'.format(
|
'%<{outtype}>{provides}'.format(
|
||||||
|
|
Loading…
Reference in a new issue