Skip to content

Commit

Permalink
Fixed for Python3
Browse files Browse the repository at this point in the history
  • Loading branch information
TwinFan committed Jul 8, 2020
1 parent 3f11698 commit 0740100
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Data/RealTraffic/udp_listen.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/python3

import sys
import socket
Expand All @@ -23,4 +23,4 @@
data, addr = connexion.recvfrom(1024)
# print "messages : ",addr , data
# print (time.time(), ":", data)
print data
print(data)

0 comments on commit 0740100

Please sign in to comment.