Skip to content
This repository has been archived by the owner on May 9, 2022. It is now read-only.

Commit

Permalink
Fix for the new line issue
Browse files Browse the repository at this point in the history
There was no new line at the end of the "clean" files.
  • Loading branch information
fferegrino committed Aug 14, 2018
1 parent 73e2f39 commit 270abb7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions jupygit/GitHandlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ def post(self):

with open(clean_path, "w") as w:
json.dump(dirty, w, indent=1)
w.write("\n") # Fix for the new line issue

self.set_status(200)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
long_description = fh.read()

# Package version
VERSION = "0.2.0"
VERSION = "0.2.1"

class VerifyVersionCommand(install):
"""Custom command to verify that the git tag matches our version"""
Expand Down

0 comments on commit 270abb7

Please sign in to comment.