Skip to content

Commit

Permalink
Fixed location printing
Browse files Browse the repository at this point in the history
  • Loading branch information
Oghenefego Ahia authored and Oghenefego Ahia committed Dec 19, 2016
1 parent 7bd6890 commit 182dfde
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions location.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,5 +116,5 @@ def createPropagationMatrix(self):
if __name__ == "__main__":
loc1 = Location("Washington")
loc2 = Location("Chicago")
print "Delay from " + loc1.city + " to " + loc2.city + " is
" + str(loc1.propagationDelayFrom(loc2)) + " ms"
print "Delay from " + loc1.city + " to " + loc2.city + " is " \
, str(loc1.propagationDelayFrom(loc2)) + " ms"

0 comments on commit 182dfde

Please sign in to comment.