Skip to content

Commit 151fb6c

Browse files
committed
removed backspace character in margins plot title because it shows as an empty glyph (on mac)
1 parent 6d51358 commit 151fb6c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

control/freqplot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@ def bode_plot(syslist, omega=None,
457457
"Gm = %.2f %s(at %.2f %s), "
458458
"Pm = %.2f %s (at %.2f %s)" %
459459
(20*np.log10(gm) if dB else gm,
460-
'dB ' if dB else '\b',
460+
'dB ' if dB else '',
461461
Wcg, 'Hz' if Hz else 'rad/s',
462462
pm if deg else math.radians(pm),
463463
'deg' if deg else 'rad',

0 commit comments

Comments
 (0)