fixed I/O complaint after file write context guard

Commit
e4727aa418c1bc6ecd2c495fed7f9ddb8e461445
Author
Marius Peter <blendoit@gmail.com>
Author date
Committer
Marius Peter <blendoit@gmail.com>
Committer date
creator.py
index 35784a8c..eac39184 100644..100644
@@ -96,6 +96,8 @@
96 96 # self.print_coord(2)
97 97 with open(full_path, 'w') as sys.stdout:
98 98 self.print_coord(2)
99 Added: # Following line required to reset value of sys.stdout
100 Added: sys.stdout = sys.__stdout__
99 101 # It is cleaner to use this context guard to ensure file is closed
100 102
101 103 return None