Skip to content

Commit

Permalink
Merge pull request #730 from LeXofLeviafan/fix-homebrew
Browse files Browse the repository at this point in the history
[#729] fixed url value passed to update_rec() from CLI
  • Loading branch information
jarun authored Apr 8, 2024
2 parents 051982c + 957f9b8 commit aa24d6d
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions buku
Original file line number Diff line number Diff line change
Expand Up @@ -6199,10 +6199,7 @@ POSITIONAL ARGUMENTS:

# Update record
if args.update is not None:
if args.url is not None:
url_in = args.url[0]
else:
url_in = ''
url_in = (args.url[0] if args.url else None)

# Parse tags into a comma-separated string
if tags_in:
Expand Down

0 comments on commit aa24d6d

Please sign in to comment.