Changes between Initial Version and Version 1 of Ticket #2759


Ignore:
Timestamp:
May 23, 2013, 7:46:45 AM (11 years ago)
Author:
Ryan J Ollos
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #2759

    • Property Status changed from new to closed
    • Property Resolution changed from to wontfix
  • Ticket #2759 – Description

    initial v1  
    11png file is readable after a small correction in google.py
    22When the output file is opened up for writing, we have to use "wb" (write binary) mode. Then only it was creating a readable output file
    3                 -  f = open(filename + '.png', 'w')
    4 
    5                 +  f = open(filename + '.png', 'wb')
     3{{{
     4#!diff
     5-  f = open(filename + '.png', 'w')
     6+  f = open(filename + '.png', 'wb')
     7}}}