Skip to content

Commit

Permalink
Fix solution.txt content
Browse files Browse the repository at this point in the history
  • Loading branch information
dwalton76 committed Jan 30, 2019
1 parent dad73e7 commit 8832c96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rubikscubennnsolver/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4259,7 +4259,7 @@ def print_solution(self, include_comments):

solution_txt_filename = os.path.join(HTML_DIRECTORY, 'solution.txt')
with open(solution_txt_filename, 'w') as fh:
fh.write(' '.join(self.solution) + "\n")
fh.write(' '.join(final_steps) + "\n")
os.chmod(solution_txt_filename, 0o777)

def nuke_corners(self):
Expand Down

0 comments on commit 8832c96

Please sign in to comment.