Skip to content

Commit

Permalink
Fix for running in Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
twkrol committed Jun 26, 2020
1 parent b625c3c commit 3585bae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
File renamed without changes.
6 changes: 3 additions & 3 deletions start.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@
import logging
from notion.client import NotionClient
# from clippings import parser
import parser
import kindle
import progress

appname = "Notion Clippings"
version = "1.0.1"
version = "1.0.2"

#Configuration load
config = configparser.ConfigParser()
Expand All @@ -52,7 +52,7 @@
print(f"- loading clippings from {clippings_file}...", end='')
try:
with open(clippings_file, 'r', encoding='utf-8-sig') as infile:
clips = parser.parse_clippings(infile)
clips = kindle.parse_clippings(infile)
print(f"[{len(clips)} loaded]")
except FileNotFoundError:
print(f"File {clippings_file} not found! Exiting.")
Expand Down

0 comments on commit 3585bae

Please sign in to comment.