Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
mkbundle: add support for python3, fixes #2444
  • Loading branch information
perexg committed Nov 10, 2014
1 parent 679989e commit 5a07ff1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion support/mkbundle
Expand Up @@ -4,7 +4,11 @@
#

import os, sys, re
import gzip, cStringIO
import gzip
try:
from io import StringIO
except ImportError:
from cStringIO import StringIO
from optparse import OptionParser

# Add reverse path split
Expand Down

0 comments on commit 5a07ff1

Please sign in to comment.