liuweireign / dpkt

Automatically exported from code.google.com/p/dpkt
Other
0 stars 0 forks source link

Syntax Errors in dpkt-1.6.tar.gz #30

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. extracting files
2. running setup.py install
3. -

What is the expected output? What do you see instead?
package should install to proper python installation dir

What version of the product are you using? On what operating system?
dpkt-1.6.tar.gz and Python 2.6

Please provide any additional information below.
There are two syntax errors in bgp.py

line 678 reads self.faiUnless(c.as == 65215)
line 678 should read self.faiUnless(c.asn == 65215)

line 715 reads self.faiUnless(b4.open.as == 237)
line 715 should read self.faiUnless(b4.open.asn == 237)

Correcting these lines allowed a successfully install

Original issue reported on code.google.com by cruentus...@gmail.com on 22 Feb 2010 at 4:30

GoogleCodeExporter commented 9 years ago
Use SVN.

http://code.google.com/p/dpkt/source/detail?r=51

Original comment by jon.ober...@gmail.com on 24 Mar 2010 at 2:25