You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I ran into an issue with mscgen extension when upgrading from Sphinx 1.2.3 to Sphinx 1.3b3.
The test to determine if the invoking builder is latex or else is (render_msc function, line 117 of mscgen.py):
if hasattr(self.builder, 'imgpath'):
But it should be:
if self.builder.format != 'latex':
I guess the Latex builder in 1.3b3 as the imgpath attribute, that it did not have in 1.2.3.
The text was updated successfully, but these errors were encountered:
I ran into an issue with mscgen extension when upgrading from Sphinx 1.2.3 to Sphinx 1.3b3.
The test to determine if the invoking builder is latex or else is (render_msc function, line 117 of mscgen.py):
if hasattr(self.builder, 'imgpath'):
But it should be:
if self.builder.format != 'latex':
I guess the Latex builder in 1.3b3 as the imgpath attribute, that it did not have in 1.2.3.
The text was updated successfully, but these errors were encountered: