updated all print calls to use print() method for 2/3

This commit is contained in:
bharnden 2019-05-05 16:52:55 -07:00
parent e58cbe9421
commit feebd8704f
11 changed files with 89 additions and 95 deletions

View file

@ -55,9 +55,9 @@ def example(options):
def main():
options = parser.parse_options("emane80211")
start = datetime.datetime.now()
print "running emane 80211 example: nodes(%s) time(%s)" % (options.nodes, options.time)
print("running emane 80211 example: nodes(%s) time(%s)" % (options.nodes, options.time))
example(options)
print "elapsed time: %s" % (datetime.datetime.now() - start)
print("elapsed time: %s" % (datetime.datetime.now() - start))
if __name__ == "__main__" or __name__ == "__builtin__":