Skip to content

Commit 688d1f6

Browse files
committed
Fix print statement in tests/freqresp.py for py3
1 parent 7f93726 commit 688d1f6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

control/tests/freqresp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
systf = tf(sys)
4141
tfMIMO = tf(sysMIMO)
4242

43-
print systf.pole()
43+
print(systf.pole())
4444
#print tfMIMO.pole() # - should throw not implemented exception
4545
#print tfMIMO.zero() # - should throw not implemented exception
4646

0 commit comments

Comments
 (0)