Skip to content
Prev Previous commit
Next Next commit
More rudimentary python 2.5 support
  • Loading branch information
Mark Costello committed Mar 22, 2013
commit 9ea88554e44bb9305f3dd1d2a506e4fa87f2f66b
6 changes: 5 additions & 1 deletion rdbtools/parser.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
from __future__ import with_statement
import struct
import io
try:
import io
except ImportError:
import StringIO as io

import sys
import datetime
import re
Expand Down