Commit 8d806c99 authored by Yonghong Song's avatar Yonghong Song

use "raw_input" instead "input" to avoid python 2.7 exception

Signed-off-by: default avatarYonghong Song <yhs@plumgrid.com>
parent 4d15420a
......@@ -92,7 +92,7 @@ try:
print(" (Neighbors are 172.16.1.100-%d, and LAN clients are 172.16.1.150-%d)"
% (100 + num_neighbors - 1, 150 + num_locals - 1))
print(" e.g.: ip netns exec wan0 netperf -H 172.16.1.100 -l 2")
input("Press enter when finished: ")
raw_input("Press enter when finished: ")
finally:
if "sim" in locals(): sim.release()
if "br100" in ipdb.interfaces: ipdb.interfaces.br100.remove().commit()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment