Skip to content

Commit 304bb29

Browse files
committed
3.0.030
1 parent afa9b47 commit 304bb29

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ To stop playing press Ctrl+C in either the terminal or mpv
9999
<details><summary>List all subcommands</summary>
100100

101101
$ library
102-
library (v3.0.029; 99 subcommands)
102+
library (v3.0.030; 99 subcommands)
103103

104104
Create database subcommands:
105105
╭─────────────────┬──────────────────────────────────────────╮

xklb/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from xklb.utils import argparse_utils, iterables
66
from xklb.utils.log_utils import log
77

8-
__version__ = "3.0.029"
8+
__version__ = "3.0.030"
99

1010
progs = {
1111
"Create database subcommands": {

xklb/multidb/allocate_torrents.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def allocate_torrents():
104104
for disk in disks:
105105
if disk["mountpoint"] in ("/home", "/var/home"):
106106
user = getpass.getuser()
107-
disk["mountpoint"] = f"{disk["mountpoint"]}/{user}"
107+
disk["mountpoint"] = f"{disk['mountpoint']}/{user}"
108108

109109
available_space = disk["free"] - args.min_free_space
110110
disk["downloads"] = list(gen_torrent_matches(torrents, available_space))

xklb/utils/arggroups.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1982,7 +1982,7 @@ def qBittorrent(parent_parser):
19821982
type=nums.human_to_bytes,
19831983
help="Download limit. If set then a few additional global preferences will also be changed",
19841984
)
1985-
parser.add_argument("--up-limit", "--upload-limit", type=nums.human_to_bytes, help="Upload limit")
1985+
parser.add_argument("--up-limit", "--ul-limit", "--upload-limit", type=nums.human_to_bytes, help="Upload limit")
19861986

19871987
parser.add_argument("--download-drive", "--prefix", default=str(Path.cwd()), help="Download drive")
19881988
parser.add_argument("--download-prefix", default="seeding", help="Download root")

0 commit comments

Comments
 (0)