[pycopia] r734 committed - Fix regression bug.

1 view
Skip to first unread message

pyc...@googlecode.com

unread,
Jul 19, 2013, 4:34:54 PM7/19/13
to pyc...@googlegroups.com
Revision: 734
Author: keith.dart
Date: Fri Jul 19 13:34:43 2013
Log: Fix regression bug.

http://code.google.com/p/pycopia/source/detail?r=734

Modified:
/trunk/SNMP/pycopia/SNMP/BER_decode.py

=======================================
--- /trunk/SNMP/pycopia/SNMP/BER_decode.py Fri Apr 19 04:20:58 2013
+++ /trunk/SNMP/pycopia/SNMP/BER_decode.py Fri Jul 19 13:34:43 2013
@@ -131,7 +131,7 @@
oid = []
# get the first subid
subid = ord(message[0])
- oid.append(subid / 40)
+ oid.append(subid // 40)
oid.append(subid % 40)

index = 1
Reply all
Reply to author
Forward
0 new messages