Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
mkbundle: fix missed StringIO usage instead cStringIO.StringIO, fixes…
… #2461
  • Loading branch information
perexg committed Nov 10, 2014
1 parent 7c00e47 commit 3cc291c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion support/mkbundle
Expand Up @@ -78,7 +78,7 @@ def output_file ( path, name, idx, next = -1 ):
if opts.gzip:
o = len(d)
l = opts.gzlevel
t = cStringIO.StringIO()
t = StringIO()
if l < 0: l = 1
if l > 9: l = 9
z = gzip.GzipFile(filename=name, mode='w', compresslevel=l, fileobj=t)
Expand Down

0 comments on commit 3cc291c

Please sign in to comment.