We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83b43ca commit 0922896Copy full SHA for 0922896
amalgamate.py
@@ -44,7 +44,7 @@ def write_to( self, output_path ):
44
if output_dir and not os.path.isdir( output_dir ):
45
os.makedirs( output_dir )
46
f = open( output_path, "wb" )
47
- f.write( bytes(self.get_value(), 'UTF-8') )
+ f.write( str.encode(self.get_value(), 'UTF-8') )
48
f.close()
49
50
def amalgamate_source( source_top_dir=None,
0 commit comments