Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
KazukiPrzyborowski authored Dec 1, 2023
1 parent 079fa60 commit 02395e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libhockeydata/hockeyfunctions.py
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ def CompressOpenFile(outfile):
except ImportError:
return False;
try:
: outfp = lzma.open(outfile, "wt", format=lzma.FORMAT_XZ, preset=9, encoding="UTF-8");
outfp = lzma.open(outfile, "wt", format=lzma.FORMAT_XZ, preset=9, encoding="UTF-8");
except TypeError:
outfp = lzma.open(outfile, "wt", format=lzma.FORMAT_XZ, preset=9);
elif(fextname==".lz4"):
Expand Down

0 comments on commit 02395e6

Please sign in to comment.