Skip to content

Commit

Permalink
Apply Hotfix v1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
egeldenhuys committed May 12, 2017
1 parent cb22919 commit 40930ef
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## v1.0.3 - 2017-05-12
### Fixed
- Fix data file arguments not taking effect

## v1.0.2 - 2017-05-12
### Fixed
- Error when database file directory does not exist (Actually fix)
Expand Down
4 changes: 2 additions & 2 deletions clickup-mirror.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ def main():
print("Please log into ClickUP using " + args.browser)
exit(1)

if os.path.isfile(args.data_file):
data = loadDataFile(args.data_file)
if os.path.isfile(dataFile):
data = loadDataFile(dataFile)
else:
data = getStructure(s_session_id)
saveDataFile(args.data_file, data)
Expand Down

0 comments on commit 40930ef

Please sign in to comment.