Skip to content

Commit

Permalink
Now it's all microservices, I hope the fad persists.
Browse files Browse the repository at this point in the history
  • Loading branch information
nicball committed Mar 27, 2024
1 parent deac713 commit 4684a85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/instaepub/instaepub.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
continue
filename = (
'@outputDir@/' +
re.sub(r'[^\w\s-]', '', v['title']) +
'.' + str(v['bookmark_id']) + '.epub'
str(v['bookmark_id']) + '.' +
re.sub(r'[^\w\s-]', '', v['title']) + '.epub'
)
if os.path.exists(filename):
continue
Expand Down

0 comments on commit 4684a85

Please sign in to comment.