Compare commits

...

10 Commits

Author SHA1 Message Date
fuzzy 3f93ec52e4 xinitrc 2022-12-08 23:11:00 -06:00
fuzzy 58bec83104 removed screenshots from sxhkdrc moved them to dwm 2022-12-08 23:08:34 -06:00
fuzzy e1cbf08369 new init.vim 2022-12-08 23:07:31 -06:00
fuzzy 685c9eed81 flexget 2022-12-08 23:07:14 -06:00
fuzzy fabb37f268 fish 2022-12-08 23:06:53 -06:00
fuzzy 4ee7dd6d53 dmenu 2022-12-08 23:06:20 -06:00
fuzzy e592ac9ef9 beets 2022-12-08 23:05:29 -06:00
fuzzy 5208fcc714 update 2022-11-17 15:27:50 -06:00
fuzzy 6218706611 some new stuff and some changess 2022-11-08 11:03:34 -06:00
fuzzy 9fb86b5e16 idk 2022-11-06 20:35:01 -06:00
42 changed files with 5123 additions and 166 deletions

View File

@ -39,8 +39,9 @@ fi
#xinput set-prop "SteelSeries SteelSeries Rival 300S Gaming Mouse" "Coordinate Transformation Matrix" 0.83 0.0 0.0 0.0 0.83 0.0 0.0 0.0 1.0
xinput set-prop "SteelSeries SteelSeries Rival 300S Gaming Mouse" "libinput Accel Profile Enabled" 0, 1
picom --experimental-backends --backend glx &
picom --backend glx &
xbanish &
wired &
mpd &
keepassxc &
redshift &

View File

@ -1,4 +1,4 @@
plugins: chroma fromfilename mbsync scrub fish duplicates bpm discogs fetchart missing lyrics
plugins: chroma fromfilename mbsync scrub fish duplicates bpm discogs fetchart missing lyrics deezer spotify
asciify-paths: yes
threaded: yes

Binary file not shown.

View File

@ -0,0 +1 @@
{"access_token": "BQD30XSMGNk01AQ5-OSU1q_ghLO_kVyW8qZTtnmOB9z1JxtStS9Ht0aD1e8NuGMa5aQ9xDjzbNzJb8gCyooSC6VmwaIR6WUsishpuxOheccE8vHZADE"}

Binary file not shown.

View File

@ -6,7 +6,8 @@ static int centered = 0; /* -c option; centers dmenu on scree
static int min_width = 500; /* minimum width when centered */
/* -fn option overrides fonts[0]; default X11 font or font set */
static const char *fonts[] = {
"monospace:size=10"
"monospace:size=10",
"emoji:size=10"
};
static const char *prompt = NULL; /* -p option; prompt to the left of input field */
static const char *colors[SchemeLast][2] = {

View File

@ -13,7 +13,10 @@ static const char *colors[SchemeLast][2] = {
/* fg bg */
[SchemeNorm] = { "#bbbbbb", "#222222" },
[SchemeSel] = { "#eeeeee", "#005577" },
[SchemeSelHighlight] = { "#ffc978", "#005577" },
[SchemeNormHighlight] = { "#ffc978", "#222222" },
[SchemeOut] = { "#000000", "#00ffff" },
[SchemeOutHighlight] = { "#ffc978", "#00ffff" },
};
/* -l option; if nonzero, dmenu uses vertical list with given number of lines */
static unsigned int lines = 0;

View File

@ -13,8 +13,8 @@ XINERAMALIBS = -lXinerama
XINERAMAFLAGS = -DXINERAMA
# freetype
FREETYPELIBS = -lfontconfig -lXft
FREETYPEINC = /usr/include/freetype2
FREETYPELIBS = -lfontconfig -lfreetype -lXrender -lX11 -L../libxft/src/.libs -l:libXft.a
FREETYPEINC = /usr/include/freetype2 -I$(PWD)/../libxft/include
# OpenBSD (uncomment)
#FREETYPEINC = $(X11INC)/freetype2

Binary file not shown.

View File

@ -133,19 +133,6 @@ xfont_create(Drw *drw, const char *fontname, FcPattern *fontpattern)
die("no font specified.");
}
/* Do not allow using color fonts. This is a workaround for a BadLength
* error from Xft with color glyphs. Modelled on the Xterm workaround. See
* https://bugzilla.redhat.com/show_bug.cgi?id=1498269
* https://lists.suckless.org/dev/1701/30932.html
* https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=916349
* and lots more all over the internet.
*/
FcBool iscol;
if(FcPatternGetBool(xfont->pattern, FC_COLOR, 0, &iscol) == FcResultMatch && iscol) {
XftFontClose(drw->dpy, xfont);
return NULL;
}
font = ecalloc(1, sizeof(Fnt));
font->xfont = xfont;
font->pattern = pattern;

Binary file not shown.

View File

@ -0,0 +1,53 @@
diff --git a/config.def.h b/config.def.h
index 1edb647..b55c45c 100644
--- a/config.def.h
+++ b/config.def.h
@@ -4,7 +4,8 @@
static int topbar = 1; /* -b option; if 0, dmenu appears at bottom */
/* -fn option overrides fonts[0]; default X11 font or font set */
static const char *fonts[] = {
- "monospace:size=10"
+ "monospace:size=10",
+ "emoji:size=10"
};
static const char *prompt = NULL; /* -p option; prompt to the left of input field */
static const char *colors[SchemeLast][2] = {
diff --git a/config.mk b/config.mk
index 05d5a3e..05300a6 100644
--- a/config.mk
+++ b/config.mk
@@ -13,8 +13,8 @@ XINERAMALIBS = -lXinerama
XINERAMAFLAGS = -DXINERAMA
# freetype
-FREETYPELIBS = -lfontconfig -lXft
-FREETYPEINC = /usr/include/freetype2
+FREETYPELIBS = -lfontconfig -lfreetype -lXrender -lX11 -L../libxft/src/.libs -l:libXft.a
+FREETYPEINC = /usr/include/freetype2 -I$(PWD)/../libxft/include
# OpenBSD (uncomment)
#FREETYPEINC = $(X11INC)/freetype2
diff --git a/drw.c b/drw.c
index 4cdbcbe..c1c265c 100644
--- a/drw.c
+++ b/drw.c
@@ -133,19 +133,6 @@ xfont_create(Drw *drw, const char *fontname, FcPattern *fontpattern)
die("no font specified.");
}
- /* Do not allow using color fonts. This is a workaround for a BadLength
- * error from Xft with color glyphs. Modelled on the Xterm workaround. See
- * https://bugzilla.redhat.com/show_bug.cgi?id=1498269
- * https://lists.suckless.org/dev/1701/30932.html
- * https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=916349
- * and lots more all over the internet.
- */
- FcBool iscol;
- if(FcPatternGetBool(xfont->pattern, FC_COLOR, 0, &iscol) == FcResultMatch && iscol) {
- XftFontClose(drw->dpy, xfont);
- return NULL;
- }
-
font = ecalloc(1, sizeof(Fnt));
font->xfont = xfont;
font->pattern = pattern;

Binary file not shown.

View File

@ -1,5 +1,4 @@
#!/bin/fish
set -Ux HOME /home/fuzzy
set -Ux XDG_CONFIG_HOME /home/fuzzy/.config
set -Ux XDG_DATE_HOME /home/fuzzy
@ -14,11 +13,12 @@ alias disroot="himalaya -a disroot"
alias maim="maim ~/Pictures/screenshots/(date +%s).png"
alias sxiv="nsxiv -af -e (xdotool getwindowfocus) -g (/home/fuzzy/Documents/scripts/getWindowGeometry.sh)"
alias nnnp="NNN_FIFO=/tmp/nnn.fifo NNN_PLUG="p:preview-tabbed" nnn"
alias transmission-remote="transmission-remote -n fuzzy:comma"
fish_add_path -g /bin /usr/bin /usr/local/bin /home/fuzzy/.cargo/bin /home/fuzzy/.local/bin /home/fuzzy/.local/bin
# Start X at login
if status is-login
if status is-interactive
if test -z "$DISPLAY" -a "$XDG_VTNR" = 1
exec startx -- -keeptty
end

View File

@ -1,5 +1,7 @@
# This file contains fish universal variable definitions.
# VERSION: 3.0
SETUVAR --export BORG_PASSHRASE:rogue_saturday_monopoly
SETUVAR --export BORG_PASSPHRASE:rogue_saturday_monopoly
SETUVAR --export EDITOR:nvim
SETUVAR --export GPG_TTY:not\x20a\x20tty
SETUVAR --export GTK_USE_PORTAL:1

View File

@ -82,3 +82,8 @@ function fish_prompt --description 'Write out the prompt'
echo -n "$suffix "
end
if set -q SSH_TTY
set -g fish_color_host brred
end

View File

@ -4,18 +4,21 @@ templates:
exists_series: /mnt/EntertainmentDrive/anime/{{series_name}}
series:
settings:
seriesgroup:
weeklies:
tracking: no
identified_by: sequence
season_packs: yes
set:
label: anime
path: /mnt/EntertainmentDrive/anime/{{series_name}}
seriesgroup:
weeklies:
- 4-nin wa Sorezore Uso wo Tsuku
- Adachi to Shimamura
- Aharen-san wa Hakarenai
- Bocchi the Rock!
- Chainsaw Man
- Do It Yourself!!
- Dungeon Meshi
- Ganbare Douki-chan
- Gekidol
- Getsuyoubi no Tawawa
@ -23,14 +26,18 @@ templates:
- Gunma-chan
- Gyakuten Sekai no Denchi Shoujo
- Hanyou no Yashahime
- Highspeed Etoile
- Horimiya
- Hoshikuzu Telepath
- Idoly Pride
- Jahy-sama wa Kujikenai!
- Jaku-Chara Tomozaki-kun
- Kageki Shoujo!!
- Kawaii dake ja Nai Shikimori-san
- Kimi wa Houkago Insomnia
- Koi to Yobu ni wa Kimochi Warui
- Koi wa Sekai Seifuku no Ato de
- Kubo-san wa Mob wo Yurusanai
- Kuma Kuma Kuma Bear
- Machikado Mazoku
- Mahouka Koukou no Yuutousei
@ -44,12 +51,16 @@ templates:
- Shiroi Suna no Aquatope
- Sono Bisque Doll
- Super Cub
- Tai-Ari deshita Ojou-sama wa Kakutou Game nante Shinai
- Uma Musume
- Vivy - Fluorite Eye's Song
- Yuru Camp
transmission:
host: 127.0.0.1
port: 9091
username: fuzzy
password: comma
tasks:

View File

@ -0,0 +1,186 @@
2022-11-26 12:15:07 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Berserk - The Golden Age Arc Memorial Edition - 09 (1080p) [AAE68AC2].mkv` kwargs: {'name': 'Aharen-san wa Hakarenai', 'identified_by': 'sequence', 'alternate_names': [], 'name_regexps': [], 'strict_name': False, 'allow_groups': [], 'date_yearfirst': None, 'date_dayfirst': None, 'special_ids': [], 'prefer_specials': None, 'assume_special': None, 'ep_regexps': [], 'date_regexps': [], 'sequence_regexps': [], 'id_regexps': []}
2022-11-26 12:15:07 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Boku no Hero Academia - 122 (1080p) [8A5DD9BA].mkv` kwargs: {'name': 'Aharen-san wa Hakarenai', 'identified_by': 'sequence', 'alternate_names': [], 'name_regexps': [], 'strict_name': False, 'allow_groups': [], 'date_yearfirst': None, 'date_dayfirst': None, 'special_ids': [], 'prefer_specials': None, 'assume_special': None, 'ep_regexps': [], 'date_regexps': [], 'sequence_regexps': [], 'id_regexps': []}
2022-11-26 12:15:07 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Akiba Maid Sensou - 08 (1080p) [53619864].mkv` kwargs: {'name': 'Aharen-san wa Hakarenai', 'identified_by': 'sequence', 'alternate_names': [], 'name_regexps': [], 'strict_name': False, 'allow_groups': [], 'date_yearfirst': None, 'date_dayfirst': None, 'special_ids': [], 'prefer_specials': None, 'assume_special': None, 'ep_regexps': [], 'date_regexps': [], 'sequence_regexps': [], 'id_regexps': []}
2022-11-26 12:15:07 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Muv-Luv Alternative - 20 (1080p) [E6124987].mkv` kwargs: {'name': 'Aharen-san wa Hakarenai', 'identified_by': 'sequence', 'alternate_names': [], 'name_regexps': [], 'strict_name': False, 'allow_groups': [], 'date_yearfirst': None, 'date_dayfirst': None, 'special_ids': [], 'prefer_specials': None, 'assume_special': None, 'ep_regexps': [], 'date_regexps': [], 'sequence_regexps': [], 'id_regexps': []}
2022-11-26 12:15:07 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Noumin Kanren no Skill bakka Agetetara Nazeka Tsuyoku Natta - 09 (1080p) [1C7115C2].mkv` kwargs: {'name': 'Adachi to Shimamura', 'identified_by': 'sequence', 'alternate_names': [], 'name_regexps': [], 'strict_name': False, 'allow_groups': [], 'date_yearfirst': None, 'date_dayfirst': None, 'special_ids': [], 'prefer_specials': None, 'assume_special': None, 'ep_regexps': [], 'date_regexps': [], 'sequence_regexps': [], 'id_regexps': []}
2022-11-26 12:15:07 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Vazzrock the Animation - 08 (1080p) [5E0FC3D3].mkv` kwargs: {'name': 'Adachi to Shimamura', 'identified_by': 'sequence', 'alternate_names': [], 'name_regexps': [], 'strict_name': False, 'allow_groups': [], 'date_yearfirst': None, 'date_dayfirst': None, 'special_ids': [], 'prefer_specials': None, 'assume_special': None, 'ep_regexps': [], 'date_regexps': [], 'sequence_regexps': [], 'id_regexps': []}
2022-11-26 12:15:07 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Fumetsu no Anata e S2 - 05 (1080p) [E47BA076].mkv` kwargs: {'name': 'Adachi to Shimamura', 'identified_by': 'sequence', 'alternate_names': [], 'name_regexps': [], 'strict_name': False, 'allow_groups': [], 'date_yearfirst': None, 'date_dayfirst': None, 'special_ids': [], 'prefer_specials': None, 'assume_special': None, 'ep_regexps': [], 'date_regexps': [], 'sequence_regexps': [], 'id_regexps': []}
2022-11-26 12:15:07 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] All Saints Street - 03 (1080p) [5971DCEC].mkv` kwargs: {'name': 'Adachi to Shimamura', 'identified_by': 'sequence', 'alternate_names': [], 'name_regexps': [], 'strict_name': False, 'allow_groups': [], 'date_yearfirst': None, 'date_dayfirst': None, 'special_ids': [], 'prefer_specials': None, 'assume_special': None, 'ep_regexps': [], 'date_regexps': [], 'sequence_regexps': [], 'id_regexps': []}
2022-11-26 12:15:07 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Akuyaku Reijou nanode Last Boss wo Kattemimashita - 10 (1080p) [CD109C8C].mkv` kwargs: {'name': 'Adachi to Shimamura', 'identified_by': 'sequence', 'alternate_names': [], 'name_regexps': [], 'strict_name': False, 'allow_groups': [], 'date_yearfirst': None, 'date_dayfirst': None, 'special_ids': [], 'prefer_specials': None, 'assume_special': None, 'ep_regexps': [], 'date_regexps': [], 'sequence_regexps': [], 'id_regexps': []}
2022-11-26 12:15:07 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Arknights - Reimei Zensou - 05 (1080p) [5917B992].mkv` kwargs: {'name': 'Adachi to Shimamura', 'identified_by': 'sequence', 'alternate_names': [], 'name_regexps': [], 'strict_name': False, 'allow_groups': [], 'date_yearfirst': None, 'date_dayfirst': None, 'special_ids': [], 'prefer_specials': None, 'assume_special': None, 'ep_regexps': [], 'date_regexps': [], 'sequence_regexps': [], 'id_regexps': []}
2022-11-26 12:15:07 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Berserk - The Golden Age Arc Memorial Edition - 09 (1080p) [AAE68AC2].mkv` kwargs: {'name': 'Adachi to Shimamura', 'identified_by': 'sequence', 'alternate_names': [], 'name_regexps': [], 'strict_name': False, 'allow_groups': [], 'date_yearfirst': None, 'date_dayfirst': None, 'special_ids': [], 'prefer_specials': None, 'assume_special': None, 'ep_regexps': [], 'date_regexps': [], 'sequence_regexps': [], 'id_regexps': []}
2022-11-26 12:15:07 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Boku no Hero Academia - 122 (1080p) [8A5DD9BA].mkv` kwargs: {'name': 'Adachi to Shimamura', 'identified_by': 'sequence', 'alternate_names': [], 'name_regexps': [], 'strict_name': False, 'allow_groups': [], 'date_yearfirst': None, 'date_dayfirst': None, 'special_ids': [], 'prefer_specials': None, 'assume_special': None, 'ep_regexps': [], 'date_regexps': [], 'sequence_regexps': [], 'id_regexps': []}
2022-11-26 12:15:07 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Akiba Maid Sensou - 08 (1080p) [53619864].mkv` kwargs: {'name': 'Adachi to Shimamura', 'identified_by': 'sequence', 'alternate_names': [], 'name_regexps': [], 'strict_name': False, 'allow_groups': [], 'date_yearfirst': None, 'date_dayfirst': None, 'special_ids': [], 'prefer_specials': None, 'assume_special': None, 'ep_regexps': [], 'date_regexps': [], 'sequence_regexps': [], 'id_regexps': []}
2022-11-26 12:15:07 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Muv-Luv Alternative - 20 (1080p) [E6124987].mkv` kwargs: {'name': 'Adachi to Shimamura', 'identified_by': 'sequence', 'alternate_names': [], 'name_regexps': [], 'strict_name': False, 'allow_groups': [], 'date_yearfirst': None, 'date_dayfirst': None, 'special_ids': [], 'prefer_specials': None, 'assume_special': None, 'ep_regexps': [], 'date_regexps': [], 'sequence_regexps': [], 'id_regexps': []}
2022-11-26 12:15:07 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 06 (1080p) [84E1707D].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku', 'identified_by': 'sequence', 'alternate_names': [], 'name_regexps': [], 'strict_name': False, 'allow_groups': [], 'date_yearfirst': None, 'date_dayfirst': None, 'special_ids': [], 'prefer_specials': None, 'assume_special': None, 'ep_regexps': [], 'date_regexps': [], 'sequence_regexps': [], 'id_regexps': []}
2022-11-26 12:15:07 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 06 (1080p) [84E1707D].mkv,name=4-nin wa Sorezore Uso wo Tsuku,id=6,season=0,season_pack=None,episode=6,quality=1080p,proper=0,status=OK)> (in 0.3357299999997565 ms)
2022-11-26 12:15:07 DEBUG series subsplease `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 06 (1080p) [84E1707D].mkv` detected as `<SeriesParseResult(data=[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 06 (1080p) [84E1707D].mkv,name=4-nin wa Sorezore Uso wo Tsuku,id=6,season=0,season_pack=None,episode=6,quality=1080p,proper=0,special=False,status=OK)>`, field: `title`
2022-11-26 12:15:07 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Legend of the Galactic Heroes - Die Neue These - 45 (1080p) [5E71B6C3].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku', 'identified_by': 'sequence', 'alternate_names': [], 'name_regexps': [], 'strict_name': False, 'allow_groups': [], 'date_yearfirst': None, 'date_dayfirst': None, 'special_ids': [], 'prefer_specials': None, 'assume_special': None, 'ep_regexps': [], 'date_regexps': [], 'sequence_regexps': [], 'id_regexps': []}
2022-11-26 12:15:07 DEBUG series subsplease series on_task_metainfo took 0.12207067899999968 to parse
2022-11-26 12:15:07 DEBUG seen subsplease Rejecting 'magnet:?xt=urn:btih:TCPUED5XXZTNUJHWOGI7BVY7E4VLFHJQ&dn=%5BSubsPlease%5D%20Chainsaw%20Man%20-%2007%20%281080p%29%20%5B70E116A5%5D.mkv&xl=1458202266&tr=http%3A%2F%2Fnyaa.tracker.wf%3A7777%2Fannounce&tr=udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2F9.rarbg.to%3A2710%2Fannounce&tr=udp%3A%2F%2F9.rarbg.me%3A2710%2Fannounce&tr=udp%3A%2F%2Ftracker.leechers-paradise.org%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.internetwarriors.net%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.cyberia.is%3A6969%2Fannounce&tr=udp%3A%2F%2Fexodus.desync.com%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker3.itzmx.com%3A6961%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.tiny-vps.com%3A6969%2Fannounce&tr=udp%3A%2F%2Fretracker.lanta-net.ru%3A2710%2Fannounce&tr=http%3A%2F%2Fopen.acgnxtracker.com%3A80%2Fannounce&tr=wss%3A%2F%2Ftracker.openwebtorrent.com' '[SubsPlease] Chainsaw Man - 07 (1080p) [70E116A5].mkv' because of seen '[SubsPlease] Chainsaw Man - 07 (1080p) [70E116A5].mkv'
2022-11-26 12:15:07 VERBOSE task subsplease REJECTED: `[SubsPlease] Chainsaw Man - 07 (1080p) [70E116A5].mkv` by seen plugin because entry with title `[SubsPlease] Chainsaw Man - 07 (1080p) [70E116A5].mkv` is already marked seen in the task subsplease at 2022-11-22 11:15
2022-11-26 12:15:07 DEBUG seen subsplease Rejecting 'magnet:?xt=urn:btih:XJ6SUKDK246BZ6BH2XPFKKEA2QBOQO2S&dn=%5BSubsPlease%5D%204-nin%20wa%20Sorezore%20Uso%20wo%20Tsuku%20-%2006%20%281080p%29%20%5B84E1707D%5D.mkv&xl=1428144901&tr=http%3A%2F%2Fnyaa.tracker.wf%3A7777%2Fannounce&tr=udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2F9.rarbg.to%3A2710%2Fannounce&tr=udp%3A%2F%2F9.rarbg.me%3A2710%2Fannounce&tr=udp%3A%2F%2Ftracker.leechers-paradise.org%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.internetwarriors.net%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.cyberia.is%3A6969%2Fannounce&tr=udp%3A%2F%2Fexodus.desync.com%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker3.itzmx.com%3A6961%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.tiny-vps.com%3A6969%2Fannounce&tr=udp%3A%2F%2Fretracker.lanta-net.ru%3A2710%2Fannounce&tr=http%3A%2F%2Fopen.acgnxtracker.com%3A80%2Fannounce&tr=wss%3A%2F%2Ftracker.openwebtorrent.com' '[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 06 (1080p) [84E1707D].mkv' because of seen '[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 06 (1080p) [84E1707D].mkv'
2022-11-26 12:15:07 VERBOSE task subsplease REJECTED: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 06 (1080p) [84E1707D].mkv` by seen plugin because entry with title `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 06 (1080p) [84E1707D].mkv` is already marked seen in the task subsplease at 2022-11-19 14:15
2022-11-26 12:15:07 DEBUG series subsplease start with entities: ['[SubsPlease] Do It Yourself!! - 08 (1080p) [8B5AA2C2].mkv']
2022-11-26 12:15:07 DEBUG series subsplease current entities: ['[SubsPlease] Do It Yourself!! - 08 (1080p) [8B5AA2C2].mkv']
2022-11-26 12:15:07 DEBUG series subsplease -------------------- process_propers -->
2022-11-26 12:15:07 DEBUG series subsplease propers - downloaded qualities: {<Quality(resolution=1080p,source=unknown,codec=h265,color_range=10bit,audio=aac)>: 0}
2022-11-26 12:15:07 VERBOSE task subsplease REJECTED: `[SubsPlease] Do It Yourself!! - 08 (1080p) [8B5AA2C2].mkv` by series plugin because entity has already been downloaded
2022-11-26 12:15:07 DEBUG series.db subsplease adding episode `8` into series `Bocchi the Rock!`
2022-11-26 12:15:07 DEBUG series.db subsplease -> added `<Episode(id=None,identifier=8,season=0,number=8)>`
2022-11-26 12:15:07 DEBUG series.db subsplease adding release `<SeriesParseResult(data=[SubsPlease] Bocchi the Rock! - 08 (1080p) [D7E0A44D].mkv,name=Bocchi the Rock!,id=8,season=0,season_pack=None,episode=8,quality=1080p,proper=0,special=False,status=OK)>`
2022-11-26 12:15:07 DEBUG series.db subsplease -> added `<Release(id=None,quality=1080p,downloaded=None,proper_count=0,title=[SubsPlease] Bocchi the Rock! - 08 (1080p) [D7E0A44D].mkv)>`
2022-11-26 12:15:07 DEBUG series subsplease start with entities: ['[SubsPlease] Bocchi the Rock! - 08 (1080p) [D7E0A44D].mkv']
2022-11-26 12:15:07 DEBUG series subsplease current entities: ['[SubsPlease] Bocchi the Rock! - 08 (1080p) [D7E0A44D].mkv']
2022-11-26 12:15:07 DEBUG series subsplease -------------------- process_propers -->
2022-11-26 12:15:07 DEBUG series subsplease propers - downloaded qualities: {}
2022-11-26 12:15:07 DEBUG series subsplease continuing w. entities: ['[SubsPlease] Bocchi the Rock! - 08 (1080p) [D7E0A44D].mkv']
2022-11-26 12:15:07 DEBUG series subsplease best entity is: `[SubsPlease] Bocchi the Rock! - 08 (1080p) [D7E0A44D].mkv`
2022-11-26 12:15:07 DEBUG series subsplease episode tracking disabled
2022-11-26 12:15:07 VERBOSE task subsplease ACCEPTED: `[SubsPlease] Bocchi the Rock! - 08 (1080p) [D7E0A44D].mkv` by series plugin because choosing first acceptable match
2022-11-26 12:15:07 DEBUG series subsplease processing series took 0.019331408000000216
2022-11-26 12:15:07 DEBUG parser_internal subsplease Parsing series: `[ASW] Bocchi the Rock! - 01 [1080p HEVC][EDC91675].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 12:15:07 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[ASW] Bocchi the Rock! - 01 [1080p HEVC][EDC91675].mkv,name=Bocchi the Rock!,id=1,season=0,season_pack=None,episode=1,quality=1080p h265,proper=0,status=OK)> (in 0.40439599999997355 ms)
2022-11-26 12:15:07 DEBUG exists_series subsplease name [ASW] Bocchi the Rock! - 01 [1080p HEVC][EDC91675].mkv is same series as Bocchi the Rock!
2022-11-26 12:15:07 DEBUG exists_series subsplease disk_parser.identifier = 1
2022-11-26 12:15:07 DEBUG exists_series subsplease disk_parser.quality = 1080p h265
2022-11-26 12:15:07 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 12:15:07 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 12:15:07 DEBUG parser_internal subsplease Parsing series: `[ASW] Bocchi the Rock! - 02 [1080p HEVC][2C494390].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 12:15:07 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[ASW] Bocchi the Rock! - 02 [1080p HEVC][2C494390].mkv,name=Bocchi the Rock!,id=2,season=0,season_pack=None,episode=2,quality=1080p h265,proper=0,status=OK)> (in 0.33759499999996834 ms)
2022-11-26 12:15:07 DEBUG exists_series subsplease name [ASW] Bocchi the Rock! - 02 [1080p HEVC][2C494390].mkv is same series as Bocchi the Rock!
2022-11-26 12:15:07 DEBUG exists_series subsplease disk_parser.identifier = 2
2022-11-26 12:15:07 DEBUG exists_series subsplease disk_parser.quality = 1080p h265
2022-11-26 12:15:07 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 12:15:07 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 12:15:07 DEBUG parser_internal subsplease Parsing series: `[ASW] Bocchi the Rock! - 05 [1080p HEVC][CDE54F81].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 12:15:07 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[ASW] Bocchi the Rock! - 05 [1080p HEVC][CDE54F81].mkv,name=Bocchi the Rock!,id=5,season=0,season_pack=None,episode=5,quality=1080p h265,proper=0,status=OK)> (in 0.3170539999999278 ms)
2022-11-26 12:15:07 DEBUG exists_series subsplease name [ASW] Bocchi the Rock! - 05 [1080p HEVC][CDE54F81].mkv is same series as Bocchi the Rock!
2022-11-26 12:15:07 DEBUG exists_series subsplease disk_parser.identifier = 5
2022-11-26 12:15:07 DEBUG exists_series subsplease disk_parser.quality = 1080p h265
2022-11-26 12:15:07 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 12:15:07 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 12:15:07 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Bocchi the Rock! - 03 (1080p) [1F17BE65].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 12:15:07 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 03 (1080p) [1F17BE65].mkv,name=Bocchi the Rock!,id=3,season=0,season_pack=None,episode=3,quality=1080p,proper=0,status=OK)> (in 0.3247819999998569 ms)
2022-11-26 12:15:07 DEBUG exists_series subsplease name [SubsPlease] Bocchi the Rock! - 03 (1080p) [1F17BE65].mkv is same series as Bocchi the Rock!
2022-11-26 12:15:07 DEBUG exists_series subsplease disk_parser.identifier = 3
2022-11-26 12:15:07 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 12:15:07 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 12:15:07 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 12:15:07 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Bocchi the Rock! - 04 (1080p) [10FE594B].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 12:15:07 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 04 (1080p) [10FE594B].mkv,name=Bocchi the Rock!,id=4,season=0,season_pack=None,episode=4,quality=1080p,proper=0,status=OK)> (in 0.3409249999997144 ms)
2022-11-26 12:15:07 DEBUG exists_series subsplease name [SubsPlease] Bocchi the Rock! - 04 (1080p) [10FE594B].mkv is same series as Bocchi the Rock!
2022-11-26 12:15:07 DEBUG exists_series subsplease disk_parser.identifier = 4
2022-11-26 12:15:07 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 12:15:07 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 12:15:07 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 12:15:07 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Bocchi the Rock! - 06 (1080p) [43102018].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 12:15:07 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 06 (1080p) [43102018].mkv,name=Bocchi the Rock!,id=6,season=0,season_pack=None,episode=6,quality=1080p,proper=0,status=OK)> (in 0.3301449999999484 ms)
2022-11-26 12:15:07 DEBUG exists_series subsplease name [SubsPlease] Bocchi the Rock! - 06 (1080p) [43102018].mkv is same series as Bocchi the Rock!
2022-11-26 12:15:07 DEBUG exists_series subsplease disk_parser.identifier = 6
2022-11-26 12:15:07 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 12:15:07 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 12:15:07 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 12:15:07 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Bocchi the Rock! - 07 (1080p) [D9ACC05A].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 12:15:07 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 07 (1080p) [D9ACC05A].mkv,name=Bocchi the Rock!,id=7,season=0,season_pack=None,episode=7,quality=1080p,proper=0,status=OK)> (in 0.34119599999993255 ms)
2022-11-26 12:15:07 DEBUG exists_series subsplease name [SubsPlease] Bocchi the Rock! - 07 (1080p) [D9ACC05A].mkv is same series as Bocchi the Rock!
2022-11-26 12:15:07 DEBUG exists_series subsplease disk_parser.identifier = 7
2022-11-26 12:15:07 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 12:15:07 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 12:15:07 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 12:15:07 DEBUG urlrewriter subsplease Checking 1 entries
2022-11-26 12:15:07 DEBUG download subsplease Accepting magnet url for [SubsPlease] Bocchi the Rock! - 08 (1080p) [D7E0A44D].mkv
2022-11-26 12:15:07 VERBOSE details subsplease Summary - Accepted: 1 (Rejected: 3 Undecided: 46 Failed: 0)
2022-11-26 12:15:07 DEBUG transmission subsplease Connecting to http://127.0.0.1:9091/transmission/
2022-11-26 12:15:07 DEBUG transmission subsplease Successfully connected to transmission.
2022-11-26 12:15:08 DEBUG utils.template subsplease Error during rendering: (UndefinedError) 'tvdb_series_name' is undefined
2022-11-26 12:15:08 ERROR set subsplease Could not set path for [SubsPlease] Bocchi the Rock! - 08 (1080p) [D7E0A44D].mkv: (UndefinedError) 'tvdb_series_name' is undefined
2022-11-26 12:15:08 DEBUG utils.template subsplease Error during rendering: (UndefinedError) 'tvdb_series_name' is undefined
2022-11-26 12:15:08 ERROR set subsplease Could not set content_filename for [SubsPlease] Bocchi the Rock! - 08 (1080p) [D7E0A44D].mkv: (UndefinedError) 'tvdb_series_name' is undefined
2022-11-26 12:15:08 CRITICAL task subsplease BUG: Unhandled error in plugin transmission: Trying to render non string template or unrecognized template format, got None
Traceback (most recent call last):
File "/usr/lib/python3.11/threading.py", line 995, in _bootstrap
self._bootstrap_inner()
│ └ <function Thread._bootstrap_inner at 0x7f4e663a5800>
└ <Thread(task_queue, started daemon 139974603888192)>
File "/usr/lib/python3.11/threading.py", line 1038, in _bootstrap_inner
self.run()
│ └ <function Thread.run at 0x7f4e663a54e0>
└ <Thread(task_queue, started daemon 139974603888192)>
File "/usr/lib/python3.11/threading.py", line 975, in run
self._target(*self._args, **self._kwargs)
│ │ │ │ │ └ {}
│ │ │ │ └ <Thread(task_queue, started daemon 139974603888192)>
│ │ │ └ ()
│ │ └ <Thread(task_queue, started daemon 139974603888192)>
│ └ <bound method TaskQueue.run of <flexget.task_queue.TaskQueue object at 0x7f4e62387390>>
└ <Thread(task_queue, started daemon 139974603888192)>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task_queue.py", line 47, in run
self.current_task.execute()
│ │ └ <function Task.execute at 0x7f4e63a0d300>
│ └ <flexget.task.Task object at 0x7f4e60ae5190>
└ <flexget.task_queue.TaskQueue object at 0x7f4e62387390>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 87, in wrapper
return func(self, *args, **kw)
│ │ │ └ {}
│ │ └ ()
│ └ <flexget.task.Task object at 0x7f4e60ae5190>
└ <function Task.execute at 0x7f4e63a0d260>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 727, in execute
self._execute()
│ └ <function Task._execute at 0x7f4e63a0d1c0>
└ <flexget.task.Task object at 0x7f4e60ae5190>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 696, in _execute
self.__run_task_phase(phase)
│ └ 'output'
└ <flexget.task.Task object at 0x7f4e60ae5190>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 514, in __run_task_phase
response = self.__run_plugin(plugin, phase, args)
│ │ │ └ (<flexget.task.Task object at 0x7f4e60ae5190>, {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', ...
│ │ └ 'output'
│ └ <PluginInfo(name=transmission)>
└ <flexget.task.Task object at 0x7f4e60ae5190>
> File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 547, in __run_plugin
result = method(*args, **kwargs)
│ │ └ {}
│ └ (<flexget.task.Task object at 0x7f4e60ae5190>, {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', ...
└ <Event(name=plugin.transmission.output,func=on_task_output,priority=135)>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/event.py", line 20, in __call__
return self.func(*args, **kwargs)
│ │ │ └ {}
│ │ └ (<flexget.task.Task object at 0x7f4e60ae5190>, {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', ...
│ └ <bound method PluginTransmission.on_task_output of <flexget.plugins.clients.transmission.PluginTransmission object at 0x7f4e6...
└ <Event(name=plugin.transmission.output,func=on_task_output,priority=135)>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 380, in on_task_output
options = self._make_torrent_options_dict(config, entry)
│ │ │ └ <Entry(title=[SubsPlease] Bocchi the Rock! - 08 (1080p) [D7E0A44D].mkv,state=accepted)>
│ │ └ {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', 'enabled': True, 'main_file_ratio': 0.9, 'actio...
│ └ <function PluginTransmission._make_torrent_options_dict at 0x7f4e628aa5c0>
└ <flexget.plugins.clients.transmission.PluginTransmission object at 0x7f4e60c9e4d0>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 741, in _make_torrent_options_dict
post['content_filename'] = entry.render(opt_dic['content_filename'])
│ │ │ └ {'path': None, 'main_file_only': False, 'main_file_ratio': 0.9, 'magnetization_timeout': 0, 'include_subs': False, 'content_f...
│ │ └ <function Entry.render at 0x7f4e63e51940>
│ └ <Entry(title=[SubsPlease] Bocchi the Rock! - 08 (1080p) [D7E0A44D].mkv,state=accepted)>
└ {'main_file_only': False, 'main_file_ratio': 0.9, 'magnetization_timeout': 0, 'include_subs': False}
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/entry.py", line 312, in render
raise ValueError(
ValueError: Trying to render non string template or unrecognized template format, got None
Traceback (most recent call last):
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 547, in __run_plugin
result = method(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/event.py", line 20, in __call__
return self.func(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 380, in on_task_output
options = self._make_torrent_options_dict(config, entry)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 741, in _make_torrent_options_dict
post['content_filename'] = entry.render(opt_dic['content_filename'])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/entry.py", line 312, in render
raise ValueError(
ValueError: Trying to render non string template or unrecognized template format, got None

View File

@ -0,0 +1,186 @@
2022-11-26 13:15:06 DEBUG parser_internal ASW Parsing series: `[ASW] Legend of the Galactic Heroes - Die Neue These - 45 [1080p HEVC x265 10Bit][AAC]` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku', 'identified_by': 'sequence', 'alternate_names': [], 'name_regexps': [], 'strict_name': False, 'allow_groups': [], 'date_yearfirst': None, 'date_dayfirst': None, 'special_ids': [], 'prefer_specials': None, 'assume_special': None, 'ep_regexps': [], 'date_regexps': [], 'sequence_regexps': [], 'id_regexps': []}
2022-11-26 13:15:06 DEBUG series ASW series on_task_metainfo took 0.17483900100000005 to parse
2022-11-26 13:15:06 DEBUG seen ASW Rejecting 'https://nyaa.si/download/1606176.torrent' '[ASW] Do It Yourself!! - 08 [1080p HEVC x265 10Bit][AAC]' because of seen '[ASW] Do It Yourself!! - 08 [1080p HEVC x265 10Bit][AAC]'
2022-11-26 13:15:06 VERBOSE task ASW REJECTED: `[ASW] Do It Yourself!! - 08 [1080p HEVC x265 10Bit][AAC]` by seen plugin because entry with title `[ASW] Do It Yourself!! - 08 [1080p HEVC x265 10Bit][AAC]` is already marked seen in the task ASW at 2022-11-26 07:48
2022-11-26 13:15:06 DEBUG series ASW start with entities: ['[ASW] Chainsaw Man - 07 [1080p HEVC x265 10Bit][AAC]']
2022-11-26 13:15:06 DEBUG series ASW current entities: ['[ASW] Chainsaw Man - 07 [1080p HEVC x265 10Bit][AAC]']
2022-11-26 13:15:06 DEBUG series ASW -------------------- process_propers -->
2022-11-26 13:15:06 DEBUG series ASW propers - downloaded qualities: {<Quality(resolution=1080p,source=unknown,codec=unknown,color_range=unknown,audio=unknown)>: 0}
2022-11-26 13:15:06 VERBOSE task ASW REJECTED: `[ASW] Chainsaw Man - 07 [1080p HEVC x265 10Bit][AAC]` by series plugin because entity has already been downloaded
2022-11-26 13:15:06 DEBUG series.db ASW adding release `<SeriesParseResult(data=[ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC],name=Bocchi the Rock!,id=8,season=0,season_pack=None,episode=8,quality=1080p h265 10bit aac,proper=0,special=False,status=OK)>`
2022-11-26 13:15:06 DEBUG series.db ASW -> added `<Release(id=None,quality=1080p h265 10bit aac,downloaded=None,proper_count=0,title=[ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC])>`
2022-11-26 13:15:06 DEBUG series ASW start with entities: ['[ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC]']
2022-11-26 13:15:06 DEBUG series ASW current entities: ['[ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC]']
2022-11-26 13:15:06 DEBUG series ASW -------------------- process_propers -->
2022-11-26 13:15:06 DEBUG series ASW propers - downloaded qualities: {}
2022-11-26 13:15:06 DEBUG series ASW continuing w. entities: ['[ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC]']
2022-11-26 13:15:06 DEBUG series ASW best entity is: `[ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC]`
2022-11-26 13:15:06 DEBUG series ASW episode tracking disabled
2022-11-26 13:15:06 VERBOSE task ASW ACCEPTED: `[ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC]` by series plugin because choosing first acceptable match
2022-11-26 13:15:06 DEBUG series ASW start with entities: ['[ASW] Bocchi the Rock! - 07 [1080p HEVC x265 10Bit][AAC]']
2022-11-26 13:15:06 DEBUG series ASW current entities: ['[ASW] Bocchi the Rock! - 07 [1080p HEVC x265 10Bit][AAC]']
2022-11-26 13:15:06 DEBUG series ASW -------------------- process_propers -->
2022-11-26 13:15:06 DEBUG series ASW propers - downloaded qualities: {<Quality(resolution=1080p,source=unknown,codec=unknown,color_range=unknown,audio=unknown)>: 0}
2022-11-26 13:15:06 VERBOSE task ASW REJECTED: `[ASW] Bocchi the Rock! - 07 [1080p HEVC x265 10Bit][AAC]` by series plugin because entity has already been downloaded
2022-11-26 13:15:06 DEBUG series ASW start with entities: ['[ASW] 4-nin wa Sorezore Uso wo Tsuku - 06 [1080p HEVC x265 10Bit][AAC]']
2022-11-26 13:15:06 DEBUG series ASW current entities: ['[ASW] 4-nin wa Sorezore Uso wo Tsuku - 06 [1080p HEVC x265 10Bit][AAC]']
2022-11-26 13:15:06 DEBUG series ASW -------------------- process_propers -->
2022-11-26 13:15:06 DEBUG series ASW propers - downloaded qualities: {<Quality(resolution=1080p,source=unknown,codec=unknown,color_range=unknown,audio=unknown)>: 0}
2022-11-26 13:15:06 VERBOSE task ASW REJECTED: `[ASW] 4-nin wa Sorezore Uso wo Tsuku - 06 [1080p HEVC x265 10Bit][AAC]` by series plugin because entity has already been downloaded
2022-11-26 13:15:06 DEBUG series ASW processing series took 0.030094432000000282
2022-11-26 13:15:06 DEBUG parser_internal ASW Parsing series: `[ASW] Bocchi the Rock! - 01 [1080p HEVC][EDC91675].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 13:15:06 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[ASW] Bocchi the Rock! - 01 [1080p HEVC][EDC91675].mkv,name=Bocchi the Rock!,id=1,season=0,season_pack=None,episode=1,quality=1080p h265,proper=0,status=OK)> (in 0.3627659999998478 ms)
2022-11-26 13:15:06 DEBUG exists_series ASW name [ASW] Bocchi the Rock! - 01 [1080p HEVC][EDC91675].mkv is same series as Bocchi the Rock!
2022-11-26 13:15:06 DEBUG exists_series ASW disk_parser.identifier = 1
2022-11-26 13:15:06 DEBUG exists_series ASW disk_parser.quality = 1080p h265
2022-11-26 13:15:06 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 13:15:06 DEBUG exists_series ASW series_parser.identifier = 8
2022-11-26 13:15:06 DEBUG parser_internal ASW Parsing series: `[ASW] Bocchi the Rock! - 02 [1080p HEVC][2C494390].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 13:15:06 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[ASW] Bocchi the Rock! - 02 [1080p HEVC][2C494390].mkv,name=Bocchi the Rock!,id=2,season=0,season_pack=None,episode=2,quality=1080p h265,proper=0,status=OK)> (in 0.30819099999979116 ms)
2022-11-26 13:15:06 DEBUG exists_series ASW name [ASW] Bocchi the Rock! - 02 [1080p HEVC][2C494390].mkv is same series as Bocchi the Rock!
2022-11-26 13:15:06 DEBUG exists_series ASW disk_parser.identifier = 2
2022-11-26 13:15:06 DEBUG exists_series ASW disk_parser.quality = 1080p h265
2022-11-26 13:15:06 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 13:15:06 DEBUG exists_series ASW series_parser.identifier = 8
2022-11-26 13:15:06 DEBUG parser_internal ASW Parsing series: `[ASW] Bocchi the Rock! - 05 [1080p HEVC][CDE54F81].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 13:15:06 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[ASW] Bocchi the Rock! - 05 [1080p HEVC][CDE54F81].mkv,name=Bocchi the Rock!,id=5,season=0,season_pack=None,episode=5,quality=1080p h265,proper=0,status=OK)> (in 0.3302590000000549 ms)
2022-11-26 13:15:06 DEBUG exists_series ASW name [ASW] Bocchi the Rock! - 05 [1080p HEVC][CDE54F81].mkv is same series as Bocchi the Rock!
2022-11-26 13:15:06 DEBUG exists_series ASW disk_parser.identifier = 5
2022-11-26 13:15:06 DEBUG exists_series ASW disk_parser.quality = 1080p h265
2022-11-26 13:15:06 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 13:15:06 DEBUG exists_series ASW series_parser.identifier = 8
2022-11-26 13:15:06 DEBUG parser_internal ASW Parsing series: `[SubsPlease] Bocchi the Rock! - 03 (1080p) [1F17BE65].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 13:15:06 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 03 (1080p) [1F17BE65].mkv,name=Bocchi the Rock!,id=3,season=0,season_pack=None,episode=3,quality=1080p,proper=0,status=OK)> (in 0.3278749999999775 ms)
2022-11-26 13:15:06 DEBUG exists_series ASW name [SubsPlease] Bocchi the Rock! - 03 (1080p) [1F17BE65].mkv is same series as Bocchi the Rock!
2022-11-26 13:15:06 DEBUG exists_series ASW disk_parser.identifier = 3
2022-11-26 13:15:06 DEBUG exists_series ASW disk_parser.quality = 1080p
2022-11-26 13:15:06 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 13:15:06 DEBUG exists_series ASW series_parser.identifier = 8
2022-11-26 13:15:06 DEBUG parser_internal ASW Parsing series: `[SubsPlease] Bocchi the Rock! - 04 (1080p) [10FE594B].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 13:15:06 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 04 (1080p) [10FE594B].mkv,name=Bocchi the Rock!,id=4,season=0,season_pack=None,episode=4,quality=1080p,proper=0,status=OK)> (in 0.3510809999998088 ms)
2022-11-26 13:15:06 DEBUG exists_series ASW name [SubsPlease] Bocchi the Rock! - 04 (1080p) [10FE594B].mkv is same series as Bocchi the Rock!
2022-11-26 13:15:06 DEBUG exists_series ASW disk_parser.identifier = 4
2022-11-26 13:15:06 DEBUG exists_series ASW disk_parser.quality = 1080p
2022-11-26 13:15:06 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 13:15:06 DEBUG exists_series ASW series_parser.identifier = 8
2022-11-26 13:15:06 DEBUG parser_internal ASW Parsing series: `[SubsPlease] Bocchi the Rock! - 06 (1080p) [43102018].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 13:15:06 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 06 (1080p) [43102018].mkv,name=Bocchi the Rock!,id=6,season=0,season_pack=None,episode=6,quality=1080p,proper=0,status=OK)> (in 0.33208799999995264 ms)
2022-11-26 13:15:06 DEBUG exists_series ASW name [SubsPlease] Bocchi the Rock! - 06 (1080p) [43102018].mkv is same series as Bocchi the Rock!
2022-11-26 13:15:06 DEBUG exists_series ASW disk_parser.identifier = 6
2022-11-26 13:15:06 DEBUG exists_series ASW disk_parser.quality = 1080p
2022-11-26 13:15:06 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 13:15:06 DEBUG exists_series ASW series_parser.identifier = 8
2022-11-26 13:15:06 DEBUG parser_internal ASW Parsing series: `[SubsPlease] Bocchi the Rock! - 07 (1080p) [D9ACC05A].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 13:15:06 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 07 (1080p) [D9ACC05A].mkv,name=Bocchi the Rock!,id=7,season=0,season_pack=None,episode=7,quality=1080p,proper=0,status=OK)> (in 0.31504999999976135 ms)
2022-11-26 13:15:06 DEBUG exists_series ASW name [SubsPlease] Bocchi the Rock! - 07 (1080p) [D9ACC05A].mkv is same series as Bocchi the Rock!
2022-11-26 13:15:06 DEBUG exists_series ASW disk_parser.identifier = 7
2022-11-26 13:15:06 DEBUG exists_series ASW disk_parser.quality = 1080p
2022-11-26 13:15:06 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 13:15:06 DEBUG exists_series ASW series_parser.identifier = 8
2022-11-26 13:15:06 DEBUG urlrewriter ASW Checking 1 entries
2022-11-26 13:15:06 INFO download ASW Downloading: [ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC]
2022-11-26 13:15:06 DEBUG download ASW Downloading url 'https://nyaa.si/download/1607177.torrent'
2022-11-26 13:15:06 DEBUG utils.requests ASW GETing URL https://nyaa.si/download/1607177.torrent with args () and kwargs {'auth': None, 'headers': {'User-Agent': 'FlexGet/3.5.5 (www.flexget.com)', 'Accept-Encoding': 'gzip, deflate, br', 'Accept': '*/*', 'Connection': 'keep-alive'}, 'allow_redirects': True, 'timeout': 30}
2022-11-26 13:15:06 DEBUG download ASW [ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC] field file set to: /tmp/tmpu7vnvewe/adba6c44d752d4c39d22bf73d161f48d
2022-11-26 13:15:06 DEBUG download ASW Found filename from headers: %5BASW%5D%20Bocchi%20the%20Rock%21%20-%2008%20%5B1080p%20HEVC%5D%5B3C1AEDA2%5D.mkv.torrent
2022-11-26 13:15:06 DEBUG download ASW Mimetype guess for application/x-bittorrent is ['.torrent']
2022-11-26 13:15:06 DEBUG download ASW Filename %5BASW%5D%20Bocchi%20the%20Rock%21%20-%2008%20%5B1080p%20HEVC%5D%5B3C1AEDA2%5D.mkv.torrent extension matches to mime-type
2022-11-26 13:15:06 DEBUG download ASW Finishing download_entry() with filename %5BASW%5D%20Bocchi%20the%20Rock%21%20-%2008%20%5B1080p%20HEVC%5D%5B3C1AEDA2%5D.mkv.torrent
2022-11-26 13:15:06 DEBUG download ASW Successfully retrieved [ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC] from https://nyaa.si/download/1607177.torrent
2022-11-26 13:15:06 VERBOSE details ASW Summary - Accepted: 1 (Rejected: 4 Undecided: 70 Failed: 0)
2022-11-26 13:15:06 DEBUG modif_torrent ASW [ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC] seems to be a torrent
2022-11-26 13:15:06 DEBUG torrent_files ASW [ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC] files: ['[ASW] Bocchi the Rock! - 08 [1080p HEVC][3C1AEDA2].mkv']
2022-11-26 13:15:06 DEBUG torrent_size ASW [ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC] size: 250.55738925933838 MB
2022-11-26 13:15:07 DEBUG transmission ASW Connecting to http://127.0.0.1:9091/transmission/
2022-11-26 13:15:07 DEBUG transmission ASW Successfully connected to transmission.
2022-11-26 13:15:07 DEBUG utils.template ASW Error during rendering: (UndefinedError) 'tvdb_series_name' is undefined
2022-11-26 13:15:07 ERROR set ASW Could not set path for [ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC]: (UndefinedError) 'tvdb_series_name' is undefined
2022-11-26 13:15:07 DEBUG utils.template ASW Error during rendering: (UndefinedError) 'tvdb_series_name' is undefined
2022-11-26 13:15:07 ERROR set ASW Could not set content_filename for [ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC]: (UndefinedError) 'tvdb_series_name' is undefined
2022-11-26 13:15:07 CRITICAL task ASW BUG: Unhandled error in plugin transmission: Trying to render non string template or unrecognized template format, got None
Traceback (most recent call last):
File "/usr/lib/python3.11/threading.py", line 995, in _bootstrap
self._bootstrap_inner()
│ └ <function Thread._bootstrap_inner at 0x7fda73acd800>
└ <Thread(task_queue, started daemon 140576125306432)>
File "/usr/lib/python3.11/threading.py", line 1038, in _bootstrap_inner
self.run()
│ └ <function Thread.run at 0x7fda73acd4e0>
└ <Thread(task_queue, started daemon 140576125306432)>
File "/usr/lib/python3.11/threading.py", line 975, in run
self._target(*self._args, **self._kwargs)
│ │ │ │ │ └ {}
│ │ │ │ └ <Thread(task_queue, started daemon 140576125306432)>
│ │ │ └ ()
│ │ └ <Thread(task_queue, started daemon 140576125306432)>
│ └ <bound method TaskQueue.run of <flexget.task_queue.TaskQueue object at 0x7fda6ecc1e10>>
└ <Thread(task_queue, started daemon 140576125306432)>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task_queue.py", line 47, in run
self.current_task.execute()
│ │ └ <function Task.execute at 0x7fda7116d300>
│ └ <flexget.task.Task object at 0x7fda6e064850>
└ <flexget.task_queue.TaskQueue object at 0x7fda6ecc1e10>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 87, in wrapper
return func(self, *args, **kw)
│ │ │ └ {}
│ │ └ ()
│ └ <flexget.task.Task object at 0x7fda6e064850>
└ <function Task.execute at 0x7fda7116d260>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 727, in execute
self._execute()
│ └ <function Task._execute at 0x7fda7116d1c0>
└ <flexget.task.Task object at 0x7fda6e064850>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 696, in _execute
self.__run_task_phase(phase)
│ └ 'output'
└ <flexget.task.Task object at 0x7fda6e064850>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 514, in __run_task_phase
response = self.__run_plugin(plugin, phase, args)
│ │ │ └ (<flexget.task.Task object at 0x7fda6e064850>, {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', ...
│ │ └ 'output'
│ └ <PluginInfo(name=transmission)>
└ <flexget.task.Task object at 0x7fda6e064850>
> File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 547, in __run_plugin
result = method(*args, **kwargs)
│ │ └ {}
│ └ (<flexget.task.Task object at 0x7fda6e064850>, {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', ...
└ <Event(name=plugin.transmission.output,func=on_task_output,priority=135)>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/event.py", line 20, in __call__
return self.func(*args, **kwargs)
│ │ │ └ {}
│ │ └ (<flexget.task.Task object at 0x7fda6e064850>, {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', ...
│ └ <bound method PluginTransmission.on_task_output of <flexget.plugins.clients.transmission.PluginTransmission object at 0x7fda6...
└ <Event(name=plugin.transmission.output,func=on_task_output,priority=135)>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 380, in on_task_output
options = self._make_torrent_options_dict(config, entry)
│ │ │ └ <Entry(title=[ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC],state=accepted)>
│ │ └ {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', 'enabled': True, 'main_file_ratio': 0.9, 'actio...
│ └ <function PluginTransmission._make_torrent_options_dict at 0x7fda6ffe25c0>
└ <flexget.plugins.clients.transmission.PluginTransmission object at 0x7fda6e56e8d0>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 741, in _make_torrent_options_dict
post['content_filename'] = entry.render(opt_dic['content_filename'])
│ │ │ └ {'path': None, 'main_file_only': False, 'main_file_ratio': 0.9, 'magnetization_timeout': 0, 'include_subs': False, 'content_f...
│ │ └ <function Entry.render at 0x7fda715c1940>
│ └ <Entry(title=[ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC],state=accepted)>
└ {'main_file_only': False, 'main_file_ratio': 0.9, 'magnetization_timeout': 0, 'include_subs': False}
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/entry.py", line 312, in render
raise ValueError(
ValueError: Trying to render non string template or unrecognized template format, got None
Traceback (most recent call last):
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 547, in __run_plugin
result = method(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/event.py", line 20, in __call__
return self.func(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 380, in on_task_output
options = self._make_torrent_options_dict(config, entry)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 741, in _make_torrent_options_dict
post['content_filename'] = entry.render(opt_dic['content_filename'])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/entry.py", line 312, in render
raise ValueError(
ValueError: Trying to render non string template or unrecognized template format, got None

View File

@ -0,0 +1,186 @@
2022-11-26 13:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Boku no Hero Academia - 122 (1080p) [8A5DD9BA].mkv` kwargs: {'name': 'Bocchi the Rock!', 'identified_by': 'sequence', 'alternate_names': [], 'name_regexps': [], 'strict_name': False, 'allow_groups': [], 'date_yearfirst': None, 'date_dayfirst': None, 'special_ids': [], 'prefer_specials': None, 'assume_special': None, 'ep_regexps': [], 'date_regexps': [], 'sequence_regexps': [], 'id_regexps': []}
2022-11-26 13:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Beast Tamer - 09 (1080p) [15BAC144].mkv` kwargs: {'name': 'Bocchi the Rock!', 'identified_by': 'sequence', 'alternate_names': [], 'name_regexps': [], 'strict_name': False, 'allow_groups': [], 'date_yearfirst': None, 'date_dayfirst': None, 'special_ids': [], 'prefer_specials': None, 'assume_special': None, 'ep_regexps': [], 'date_regexps': [], 'sequence_regexps': [], 'id_regexps': []}
2022-11-26 13:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Boruto - Naruto Next Generations - 276 (1080p) [6679346B].mkv` kwargs: {'name': 'Bocchi the Rock!', 'identified_by': 'sequence', 'alternate_names': [], 'name_regexps': [], 'strict_name': False, 'allow_groups': [], 'date_yearfirst': None, 'date_dayfirst': None, 'special_ids': [], 'prefer_specials': None, 'assume_special': None, 'ep_regexps': [], 'date_regexps': [], 'sequence_regexps': [], 'id_regexps': []}
2022-11-26 13:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Vazzrock the Animation - 08 (1080p) [5E0FC3D3].mkv` kwargs: {'name': 'Aharen-san wa Hakarenai', 'identified_by': 'sequence', 'alternate_names': [], 'name_regexps': [], 'strict_name': False, 'allow_groups': [], 'date_yearfirst': None, 'date_dayfirst': None, 'special_ids': [], 'prefer_specials': None, 'assume_special': None, 'ep_regexps': [], 'date_regexps': [], 'sequence_regexps': [], 'id_regexps': []}
2022-11-26 13:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Akiba Maid Sensou - 08 (1080p) [53619864].mkv` kwargs: {'name': 'Aharen-san wa Hakarenai', 'identified_by': 'sequence', 'alternate_names': [], 'name_regexps': [], 'strict_name': False, 'allow_groups': [], 'date_yearfirst': None, 'date_dayfirst': None, 'special_ids': [], 'prefer_specials': None, 'assume_special': None, 'ep_regexps': [], 'date_regexps': [], 'sequence_regexps': [], 'id_regexps': []}
2022-11-26 13:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] All Saints Street - 03 (1080p) [5971DCEC].mkv` kwargs: {'name': 'Aharen-san wa Hakarenai', 'identified_by': 'sequence', 'alternate_names': [], 'name_regexps': [], 'strict_name': False, 'allow_groups': [], 'date_yearfirst': None, 'date_dayfirst': None, 'special_ids': [], 'prefer_specials': None, 'assume_special': None, 'ep_regexps': [], 'date_regexps': [], 'sequence_regexps': [], 'id_regexps': []}
2022-11-26 13:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Berserk - The Golden Age Arc Memorial Edition - 09 (1080p) [AAE68AC2].mkv` kwargs: {'name': 'Aharen-san wa Hakarenai', 'identified_by': 'sequence', 'alternate_names': [], 'name_regexps': [], 'strict_name': False, 'allow_groups': [], 'date_yearfirst': None, 'date_dayfirst': None, 'special_ids': [], 'prefer_specials': None, 'assume_special': None, 'ep_regexps': [], 'date_regexps': [], 'sequence_regexps': [], 'id_regexps': []}
2022-11-26 13:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Fumetsu no Anata e S2 - 05 (1080p) [E47BA076].mkv` kwargs: {'name': 'Aharen-san wa Hakarenai', 'identified_by': 'sequence', 'alternate_names': [], 'name_regexps': [], 'strict_name': False, 'allow_groups': [], 'date_yearfirst': None, 'date_dayfirst': None, 'special_ids': [], 'prefer_specials': None, 'assume_special': None, 'ep_regexps': [], 'date_regexps': [], 'sequence_regexps': [], 'id_regexps': []}
2022-11-26 13:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Arknights - Reimei Zensou - 05 (1080p) [5917B992].mkv` kwargs: {'name': 'Aharen-san wa Hakarenai', 'identified_by': 'sequence', 'alternate_names': [], 'name_regexps': [], 'strict_name': False, 'allow_groups': [], 'date_yearfirst': None, 'date_dayfirst': None, 'special_ids': [], 'prefer_specials': None, 'assume_special': None, 'ep_regexps': [], 'date_regexps': [], 'sequence_regexps': [], 'id_regexps': []}
2022-11-26 13:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Noumin Kanren no Skill bakka Agetetara Nazeka Tsuyoku Natta - 09 (1080p) [1C7115C2].mkv` kwargs: {'name': 'Aharen-san wa Hakarenai', 'identified_by': 'sequence', 'alternate_names': [], 'name_regexps': [], 'strict_name': False, 'allow_groups': [], 'date_yearfirst': None, 'date_dayfirst': None, 'special_ids': [], 'prefer_specials': None, 'assume_special': None, 'ep_regexps': [], 'date_regexps': [], 'sequence_regexps': [], 'id_regexps': []}
2022-11-26 13:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Muv-Luv Alternative - 20 (1080p) [E6124987].mkv` kwargs: {'name': 'Aharen-san wa Hakarenai', 'identified_by': 'sequence', 'alternate_names': [], 'name_regexps': [], 'strict_name': False, 'allow_groups': [], 'date_yearfirst': None, 'date_dayfirst': None, 'special_ids': [], 'prefer_specials': None, 'assume_special': None, 'ep_regexps': [], 'date_regexps': [], 'sequence_regexps': [], 'id_regexps': []}
2022-11-26 13:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Akuyaku Reijou nanode Last Boss wo Kattemimashita - 10 (1080p) [CD109C8C].mkv` kwargs: {'name': 'Aharen-san wa Hakarenai', 'identified_by': 'sequence', 'alternate_names': [], 'name_regexps': [], 'strict_name': False, 'allow_groups': [], 'date_yearfirst': None, 'date_dayfirst': None, 'special_ids': [], 'prefer_specials': None, 'assume_special': None, 'ep_regexps': [], 'date_regexps': [], 'sequence_regexps': [], 'id_regexps': []}
2022-11-26 13:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Boku no Hero Academia - 122 (1080p) [8A5DD9BA].mkv` kwargs: {'name': 'Aharen-san wa Hakarenai', 'identified_by': 'sequence', 'alternate_names': [], 'name_regexps': [], 'strict_name': False, 'allow_groups': [], 'date_yearfirst': None, 'date_dayfirst': None, 'special_ids': [], 'prefer_specials': None, 'assume_special': None, 'ep_regexps': [], 'date_regexps': [], 'sequence_regexps': [], 'id_regexps': []}
2022-11-26 13:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Vazzrock the Animation - 08 (1080p) [5E0FC3D3].mkv` kwargs: {'name': 'Adachi to Shimamura', 'identified_by': 'sequence', 'alternate_names': [], 'name_regexps': [], 'strict_name': False, 'allow_groups': [], 'date_yearfirst': None, 'date_dayfirst': None, 'special_ids': [], 'prefer_specials': None, 'assume_special': None, 'ep_regexps': [], 'date_regexps': [], 'sequence_regexps': [], 'id_regexps': []}
2022-11-26 13:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Akiba Maid Sensou - 08 (1080p) [53619864].mkv` kwargs: {'name': 'Adachi to Shimamura', 'identified_by': 'sequence', 'alternate_names': [], 'name_regexps': [], 'strict_name': False, 'allow_groups': [], 'date_yearfirst': None, 'date_dayfirst': None, 'special_ids': [], 'prefer_specials': None, 'assume_special': None, 'ep_regexps': [], 'date_regexps': [], 'sequence_regexps': [], 'id_regexps': []}
2022-11-26 13:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] All Saints Street - 03 (1080p) [5971DCEC].mkv` kwargs: {'name': 'Adachi to Shimamura', 'identified_by': 'sequence', 'alternate_names': [], 'name_regexps': [], 'strict_name': False, 'allow_groups': [], 'date_yearfirst': None, 'date_dayfirst': None, 'special_ids': [], 'prefer_specials': None, 'assume_special': None, 'ep_regexps': [], 'date_regexps': [], 'sequence_regexps': [], 'id_regexps': []}
2022-11-26 13:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Berserk - The Golden Age Arc Memorial Edition - 09 (1080p) [AAE68AC2].mkv` kwargs: {'name': 'Adachi to Shimamura', 'identified_by': 'sequence', 'alternate_names': [], 'name_regexps': [], 'strict_name': False, 'allow_groups': [], 'date_yearfirst': None, 'date_dayfirst': None, 'special_ids': [], 'prefer_specials': None, 'assume_special': None, 'ep_regexps': [], 'date_regexps': [], 'sequence_regexps': [], 'id_regexps': []}
2022-11-26 13:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Fumetsu no Anata e S2 - 05 (1080p) [E47BA076].mkv` kwargs: {'name': 'Adachi to Shimamura', 'identified_by': 'sequence', 'alternate_names': [], 'name_regexps': [], 'strict_name': False, 'allow_groups': [], 'date_yearfirst': None, 'date_dayfirst': None, 'special_ids': [], 'prefer_specials': None, 'assume_special': None, 'ep_regexps': [], 'date_regexps': [], 'sequence_regexps': [], 'id_regexps': []}
2022-11-26 13:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Arknights - Reimei Zensou - 05 (1080p) [5917B992].mkv` kwargs: {'name': 'Adachi to Shimamura', 'identified_by': 'sequence', 'alternate_names': [], 'name_regexps': [], 'strict_name': False, 'allow_groups': [], 'date_yearfirst': None, 'date_dayfirst': None, 'special_ids': [], 'prefer_specials': None, 'assume_special': None, 'ep_regexps': [], 'date_regexps': [], 'sequence_regexps': [], 'id_regexps': []}
2022-11-26 13:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Noumin Kanren no Skill bakka Agetetara Nazeka Tsuyoku Natta - 09 (1080p) [1C7115C2].mkv` kwargs: {'name': 'Adachi to Shimamura', 'identified_by': 'sequence', 'alternate_names': [], 'name_regexps': [], 'strict_name': False, 'allow_groups': [], 'date_yearfirst': None, 'date_dayfirst': None, 'special_ids': [], 'prefer_specials': None, 'assume_special': None, 'ep_regexps': [], 'date_regexps': [], 'sequence_regexps': [], 'id_regexps': []}
2022-11-26 13:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Muv-Luv Alternative - 20 (1080p) [E6124987].mkv` kwargs: {'name': 'Adachi to Shimamura', 'identified_by': 'sequence', 'alternate_names': [], 'name_regexps': [], 'strict_name': False, 'allow_groups': [], 'date_yearfirst': None, 'date_dayfirst': None, 'special_ids': [], 'prefer_specials': None, 'assume_special': None, 'ep_regexps': [], 'date_regexps': [], 'sequence_regexps': [], 'id_regexps': []}
2022-11-26 13:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Akuyaku Reijou nanode Last Boss wo Kattemimashita - 10 (1080p) [CD109C8C].mkv` kwargs: {'name': 'Adachi to Shimamura', 'identified_by': 'sequence', 'alternate_names': [], 'name_regexps': [], 'strict_name': False, 'allow_groups': [], 'date_yearfirst': None, 'date_dayfirst': None, 'special_ids': [], 'prefer_specials': None, 'assume_special': None, 'ep_regexps': [], 'date_regexps': [], 'sequence_regexps': [], 'id_regexps': []}
2022-11-26 13:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Boku no Hero Academia - 122 (1080p) [8A5DD9BA].mkv` kwargs: {'name': 'Adachi to Shimamura', 'identified_by': 'sequence', 'alternate_names': [], 'name_regexps': [], 'strict_name': False, 'allow_groups': [], 'date_yearfirst': None, 'date_dayfirst': None, 'special_ids': [], 'prefer_specials': None, 'assume_special': None, 'ep_regexps': [], 'date_regexps': [], 'sequence_regexps': [], 'id_regexps': []}
2022-11-26 13:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Legend of the Galactic Heroes - Die Neue These - 45 (1080p) [5E71B6C3].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku', 'identified_by': 'sequence', 'alternate_names': [], 'name_regexps': [], 'strict_name': False, 'allow_groups': [], 'date_yearfirst': None, 'date_dayfirst': None, 'special_ids': [], 'prefer_specials': None, 'assume_special': None, 'ep_regexps': [], 'date_regexps': [], 'sequence_regexps': [], 'id_regexps': []}
2022-11-26 13:15:08 DEBUG series subsplease series on_task_metainfo took 0.12173204699999962 to parse
2022-11-26 13:15:08 DEBUG seen subsplease Rejecting 'magnet:?xt=urn:btih:TCPUED5XXZTNUJHWOGI7BVY7E4VLFHJQ&dn=%5BSubsPlease%5D%20Chainsaw%20Man%20-%2007%20%281080p%29%20%5B70E116A5%5D.mkv&xl=1458202266&tr=http%3A%2F%2Fnyaa.tracker.wf%3A7777%2Fannounce&tr=udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337%2Fannounce&tr=udp%3A%2F%2F9.rarbg.to%3A2710%2Fannounce&tr=udp%3A%2F%2F9.rarbg.me%3A2710%2Fannounce&tr=udp%3A%2F%2Ftracker.leechers-paradise.org%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker.internetwarriors.net%3A1337%2Fannounce&tr=udp%3A%2F%2Ftracker.cyberia.is%3A6969%2Fannounce&tr=udp%3A%2F%2Fexodus.desync.com%3A6969%2Fannounce&tr=udp%3A%2F%2Ftracker3.itzmx.com%3A6961%2Fannounce&tr=udp%3A%2F%2Ftracker.torrent.eu.org%3A451%2Fannounce&tr=udp%3A%2F%2Ftracker.tiny-vps.com%3A6969%2Fannounce&tr=udp%3A%2F%2Fretracker.lanta-net.ru%3A2710%2Fannounce&tr=http%3A%2F%2Fopen.acgnxtracker.com%3A80%2Fannounce&tr=wss%3A%2F%2Ftracker.openwebtorrent.com' '[SubsPlease] Chainsaw Man - 07 (1080p) [70E116A5].mkv' because of seen '[SubsPlease] Chainsaw Man - 07 (1080p) [70E116A5].mkv'
2022-11-26 13:15:08 VERBOSE task subsplease REJECTED: `[SubsPlease] Chainsaw Man - 07 (1080p) [70E116A5].mkv` by seen plugin because entry with title `[SubsPlease] Chainsaw Man - 07 (1080p) [70E116A5].mkv` is already marked seen in the task subsplease at 2022-11-22 11:15
2022-11-26 13:15:08 DEBUG series subsplease start with entities: ['[SubsPlease] Do It Yourself!! - 08 (1080p) [8B5AA2C2].mkv']
2022-11-26 13:15:08 DEBUG series subsplease current entities: ['[SubsPlease] Do It Yourself!! - 08 (1080p) [8B5AA2C2].mkv']
2022-11-26 13:15:08 DEBUG series subsplease -------------------- process_propers -->
2022-11-26 13:15:08 DEBUG series subsplease propers - downloaded qualities: {<Quality(resolution=1080p,source=unknown,codec=h265,color_range=10bit,audio=aac)>: 0}
2022-11-26 13:15:08 VERBOSE task subsplease REJECTED: `[SubsPlease] Do It Yourself!! - 08 (1080p) [8B5AA2C2].mkv` by series plugin because entity has already been downloaded
2022-11-26 13:15:08 DEBUG series subsplease start with entities: ['[SubsPlease] Bocchi the Rock! - 08 (1080p) [D7E0A44D].mkv']
2022-11-26 13:15:08 DEBUG series subsplease current entities: ['[SubsPlease] Bocchi the Rock! - 08 (1080p) [D7E0A44D].mkv']
2022-11-26 13:15:08 DEBUG series subsplease -------------------- process_propers -->
2022-11-26 13:15:08 DEBUG series subsplease propers - downloaded qualities: {}
2022-11-26 13:15:08 DEBUG series subsplease continuing w. entities: ['[SubsPlease] Bocchi the Rock! - 08 (1080p) [D7E0A44D].mkv']
2022-11-26 13:15:08 DEBUG series subsplease best entity is: `[SubsPlease] Bocchi the Rock! - 08 (1080p) [D7E0A44D].mkv`
2022-11-26 13:15:08 DEBUG series subsplease episode tracking disabled
2022-11-26 13:15:08 VERBOSE task subsplease ACCEPTED: `[SubsPlease] Bocchi the Rock! - 08 (1080p) [D7E0A44D].mkv` by series plugin because choosing first acceptable match
2022-11-26 13:15:08 DEBUG series subsplease processing series took 0.013847659999999706
2022-11-26 13:15:08 DEBUG parser_internal subsplease Parsing series: `[ASW] Bocchi the Rock! - 01 [1080p HEVC][EDC91675].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 13:15:08 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[ASW] Bocchi the Rock! - 01 [1080p HEVC][EDC91675].mkv,name=Bocchi the Rock!,id=1,season=0,season_pack=None,episode=1,quality=1080p h265,proper=0,status=OK)> (in 0.3661259999998556 ms)
2022-11-26 13:15:08 DEBUG exists_series subsplease name [ASW] Bocchi the Rock! - 01 [1080p HEVC][EDC91675].mkv is same series as Bocchi the Rock!
2022-11-26 13:15:08 DEBUG exists_series subsplease disk_parser.identifier = 1
2022-11-26 13:15:08 DEBUG exists_series subsplease disk_parser.quality = 1080p h265
2022-11-26 13:15:08 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 13:15:08 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 13:15:08 DEBUG parser_internal subsplease Parsing series: `[ASW] Bocchi the Rock! - 02 [1080p HEVC][2C494390].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 13:15:08 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[ASW] Bocchi the Rock! - 02 [1080p HEVC][2C494390].mkv,name=Bocchi the Rock!,id=2,season=0,season_pack=None,episode=2,quality=1080p h265,proper=0,status=OK)> (in 0.3480089999996494 ms)
2022-11-26 13:15:08 DEBUG exists_series subsplease name [ASW] Bocchi the Rock! - 02 [1080p HEVC][2C494390].mkv is same series as Bocchi the Rock!
2022-11-26 13:15:08 DEBUG exists_series subsplease disk_parser.identifier = 2
2022-11-26 13:15:08 DEBUG exists_series subsplease disk_parser.quality = 1080p h265
2022-11-26 13:15:08 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 13:15:08 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 13:15:08 DEBUG parser_internal subsplease Parsing series: `[ASW] Bocchi the Rock! - 05 [1080p HEVC][CDE54F81].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 13:15:08 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[ASW] Bocchi the Rock! - 05 [1080p HEVC][CDE54F81].mkv,name=Bocchi the Rock!,id=5,season=0,season_pack=None,episode=5,quality=1080p h265,proper=0,status=OK)> (in 0.3655089999998751 ms)
2022-11-26 13:15:08 DEBUG exists_series subsplease name [ASW] Bocchi the Rock! - 05 [1080p HEVC][CDE54F81].mkv is same series as Bocchi the Rock!
2022-11-26 13:15:08 DEBUG exists_series subsplease disk_parser.identifier = 5
2022-11-26 13:15:08 DEBUG exists_series subsplease disk_parser.quality = 1080p h265
2022-11-26 13:15:08 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 13:15:08 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 13:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Bocchi the Rock! - 03 (1080p) [1F17BE65].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 13:15:08 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 03 (1080p) [1F17BE65].mkv,name=Bocchi the Rock!,id=3,season=0,season_pack=None,episode=3,quality=1080p,proper=0,status=OK)> (in 0.34952500000029474 ms)
2022-11-26 13:15:08 DEBUG exists_series subsplease name [SubsPlease] Bocchi the Rock! - 03 (1080p) [1F17BE65].mkv is same series as Bocchi the Rock!
2022-11-26 13:15:08 DEBUG exists_series subsplease disk_parser.identifier = 3
2022-11-26 13:15:08 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 13:15:08 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 13:15:08 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 13:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Bocchi the Rock! - 04 (1080p) [10FE594B].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 13:15:08 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 04 (1080p) [10FE594B].mkv,name=Bocchi the Rock!,id=4,season=0,season_pack=None,episode=4,quality=1080p,proper=0,status=OK)> (in 0.40547199999974026 ms)
2022-11-26 13:15:08 DEBUG exists_series subsplease name [SubsPlease] Bocchi the Rock! - 04 (1080p) [10FE594B].mkv is same series as Bocchi the Rock!
2022-11-26 13:15:08 DEBUG exists_series subsplease disk_parser.identifier = 4
2022-11-26 13:15:08 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 13:15:08 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 13:15:08 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 13:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Bocchi the Rock! - 06 (1080p) [43102018].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 13:15:08 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 06 (1080p) [43102018].mkv,name=Bocchi the Rock!,id=6,season=0,season_pack=None,episode=6,quality=1080p,proper=0,status=OK)> (in 0.35581800000006325 ms)
2022-11-26 13:15:08 DEBUG exists_series subsplease name [SubsPlease] Bocchi the Rock! - 06 (1080p) [43102018].mkv is same series as Bocchi the Rock!
2022-11-26 13:15:08 DEBUG exists_series subsplease disk_parser.identifier = 6
2022-11-26 13:15:08 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 13:15:08 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 13:15:08 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 13:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Bocchi the Rock! - 07 (1080p) [D9ACC05A].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 13:15:08 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 07 (1080p) [D9ACC05A].mkv,name=Bocchi the Rock!,id=7,season=0,season_pack=None,episode=7,quality=1080p,proper=0,status=OK)> (in 0.39301800000002274 ms)
2022-11-26 13:15:08 DEBUG exists_series subsplease name [SubsPlease] Bocchi the Rock! - 07 (1080p) [D9ACC05A].mkv is same series as Bocchi the Rock!
2022-11-26 13:15:08 DEBUG exists_series subsplease disk_parser.identifier = 7
2022-11-26 13:15:08 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 13:15:08 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 13:15:08 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 13:15:08 DEBUG urlrewriter subsplease Checking 1 entries
2022-11-26 13:15:08 DEBUG download subsplease Accepting magnet url for [SubsPlease] Bocchi the Rock! - 08 (1080p) [D7E0A44D].mkv
2022-11-26 13:15:08 VERBOSE details subsplease Summary - Accepted: 1 (Rejected: 2 Undecided: 48 Failed: 0)
2022-11-26 13:15:08 DEBUG transmission subsplease Connecting to http://127.0.0.1:9091/transmission/
2022-11-26 13:15:08 DEBUG transmission subsplease Successfully connected to transmission.
2022-11-26 13:15:09 DEBUG utils.template subsplease Error during rendering: (UndefinedError) 'tvdb_series_name' is undefined
2022-11-26 13:15:09 ERROR set subsplease Could not set path for [SubsPlease] Bocchi the Rock! - 08 (1080p) [D7E0A44D].mkv: (UndefinedError) 'tvdb_series_name' is undefined
2022-11-26 13:15:09 DEBUG utils.template subsplease Error during rendering: (UndefinedError) 'tvdb_series_name' is undefined
2022-11-26 13:15:09 ERROR set subsplease Could not set content_filename for [SubsPlease] Bocchi the Rock! - 08 (1080p) [D7E0A44D].mkv: (UndefinedError) 'tvdb_series_name' is undefined
2022-11-26 13:15:09 CRITICAL task subsplease BUG: Unhandled error in plugin transmission: Trying to render non string template or unrecognized template format, got None
Traceback (most recent call last):
File "/usr/lib/python3.11/threading.py", line 995, in _bootstrap
self._bootstrap_inner()
│ └ <function Thread._bootstrap_inner at 0x7fda73acd800>
└ <Thread(task_queue, started daemon 140576125306432)>
File "/usr/lib/python3.11/threading.py", line 1038, in _bootstrap_inner
self.run()
│ └ <function Thread.run at 0x7fda73acd4e0>
└ <Thread(task_queue, started daemon 140576125306432)>
File "/usr/lib/python3.11/threading.py", line 975, in run
self._target(*self._args, **self._kwargs)
│ │ │ │ │ └ {}
│ │ │ │ └ <Thread(task_queue, started daemon 140576125306432)>
│ │ │ └ ()
│ │ └ <Thread(task_queue, started daemon 140576125306432)>
│ └ <bound method TaskQueue.run of <flexget.task_queue.TaskQueue object at 0x7fda6ecc1e10>>
└ <Thread(task_queue, started daemon 140576125306432)>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task_queue.py", line 47, in run
self.current_task.execute()
│ │ └ <function Task.execute at 0x7fda7116d300>
│ └ <flexget.task.Task object at 0x7fda6e065110>
└ <flexget.task_queue.TaskQueue object at 0x7fda6ecc1e10>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 87, in wrapper
return func(self, *args, **kw)
│ │ │ └ {}
│ │ └ ()
│ └ <flexget.task.Task object at 0x7fda6e065110>
└ <function Task.execute at 0x7fda7116d260>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 727, in execute
self._execute()
│ └ <function Task._execute at 0x7fda7116d1c0>
└ <flexget.task.Task object at 0x7fda6e065110>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 696, in _execute
self.__run_task_phase(phase)
│ └ 'output'
└ <flexget.task.Task object at 0x7fda6e065110>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 514, in __run_task_phase
response = self.__run_plugin(plugin, phase, args)
│ │ │ └ (<flexget.task.Task object at 0x7fda6e065110>, {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', ...
│ │ └ 'output'
│ └ <PluginInfo(name=transmission)>
└ <flexget.task.Task object at 0x7fda6e065110>
> File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 547, in __run_plugin
result = method(*args, **kwargs)
│ │ └ {}
│ └ (<flexget.task.Task object at 0x7fda6e065110>, {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', ...
└ <Event(name=plugin.transmission.output,func=on_task_output,priority=135)>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/event.py", line 20, in __call__
return self.func(*args, **kwargs)
│ │ │ └ {}
│ │ └ (<flexget.task.Task object at 0x7fda6e065110>, {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', ...
│ └ <bound method PluginTransmission.on_task_output of <flexget.plugins.clients.transmission.PluginTransmission object at 0x7fda6...
└ <Event(name=plugin.transmission.output,func=on_task_output,priority=135)>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 380, in on_task_output
options = self._make_torrent_options_dict(config, entry)
│ │ │ └ <Entry(title=[SubsPlease] Bocchi the Rock! - 08 (1080p) [D7E0A44D].mkv,state=accepted)>
│ │ └ {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', 'enabled': True, 'main_file_ratio': 0.9, 'actio...
│ └ <function PluginTransmission._make_torrent_options_dict at 0x7fda6ffe25c0>
└ <flexget.plugins.clients.transmission.PluginTransmission object at 0x7fda6e56e8d0>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 741, in _make_torrent_options_dict
post['content_filename'] = entry.render(opt_dic['content_filename'])
│ │ │ └ {'path': None, 'main_file_only': False, 'main_file_ratio': 0.9, 'magnetization_timeout': 0, 'include_subs': False, 'content_f...
│ │ └ <function Entry.render at 0x7fda715c1940>
│ └ <Entry(title=[SubsPlease] Bocchi the Rock! - 08 (1080p) [D7E0A44D].mkv,state=accepted)>
└ {'main_file_only': False, 'main_file_ratio': 0.9, 'magnetization_timeout': 0, 'include_subs': False}
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/entry.py", line 312, in render
raise ValueError(
ValueError: Trying to render non string template or unrecognized template format, got None
Traceback (most recent call last):
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 547, in __run_plugin
result = method(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/event.py", line 20, in __call__
return self.func(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 380, in on_task_output
options = self._make_torrent_options_dict(config, entry)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 741, in _make_torrent_options_dict
post['content_filename'] = entry.render(opt_dic['content_filename'])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/entry.py", line 312, in render
raise ValueError(
ValueError: Trying to render non string template or unrecognized template format, got None

View File

@ -0,0 +1,186 @@
2022-11-26 13:47:43 DEBUG series ASW `[ASW] 4-nin wa Sorezore Uso wo Tsuku - 06 [1080p HEVC x265 10Bit][AAC]` detected as `<SeriesParseResult(data=[ASW] 4-nin wa Sorezore Uso wo Tsuku - 06 [1080p HEVC x265 10Bit][AAC],name=4-nin wa Sorezore Uso wo Tsuku,id=6,season=0,season_pack=None,episode=6,quality=1080p h265 10bit aac,proper=0,special=False,status=OK)>`, field: `title`
2022-11-26 13:47:43 DEBUG parser_internal ASW Parsing series: `[ASW] Legend of the Galactic Heroes - Die Neue These - 44 [1080p HEVC x265 10Bit][AAC]` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku', 'identified_by': 'sequence', 'alternate_names': [], 'name_regexps': [], 'strict_name': False, 'allow_groups': [], 'date_yearfirst': None, 'date_dayfirst': None, 'special_ids': [], 'prefer_specials': None, 'assume_special': None, 'ep_regexps': [], 'date_regexps': [], 'sequence_regexps': [], 'id_regexps': []}
2022-11-26 13:47:43 DEBUG parser_internal ASW Parsing series: `[ASW] Legend of the Galactic Heroes - Die Neue These - 45 [1080p HEVC x265 10Bit][AAC]` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku', 'identified_by': 'sequence', 'alternate_names': [], 'name_regexps': [], 'strict_name': False, 'allow_groups': [], 'date_yearfirst': None, 'date_dayfirst': None, 'special_ids': [], 'prefer_specials': None, 'assume_special': None, 'ep_regexps': [], 'date_regexps': [], 'sequence_regexps': [], 'id_regexps': []}
2022-11-26 13:47:43 DEBUG series ASW series on_task_metainfo took 0.17859791699999983 to parse
2022-11-26 13:47:43 DEBUG seen ASW Rejecting 'https://nyaa.si/download/1606176.torrent' '[ASW] Do It Yourself!! - 08 [1080p HEVC x265 10Bit][AAC]' because of seen '[ASW] Do It Yourself!! - 08 [1080p HEVC x265 10Bit][AAC]'
2022-11-26 13:47:43 VERBOSE task ASW REJECTED: `[ASW] Do It Yourself!! - 08 [1080p HEVC x265 10Bit][AAC]` by seen plugin because entry with title `[ASW] Do It Yourself!! - 08 [1080p HEVC x265 10Bit][AAC]` is already marked seen in the task ASW at 2022-11-26 07:48
2022-11-26 13:47:43 DEBUG series ASW start with entities: ['[ASW] Chainsaw Man - 07 [1080p HEVC x265 10Bit][AAC]']
2022-11-26 13:47:43 DEBUG series ASW current entities: ['[ASW] Chainsaw Man - 07 [1080p HEVC x265 10Bit][AAC]']
2022-11-26 13:47:43 DEBUG series ASW -------------------- process_propers -->
2022-11-26 13:47:43 DEBUG series ASW propers - downloaded qualities: {<Quality(resolution=1080p,source=unknown,codec=unknown,color_range=unknown,audio=unknown)>: 0}
2022-11-26 13:47:43 VERBOSE task ASW REJECTED: `[ASW] Chainsaw Man - 07 [1080p HEVC x265 10Bit][AAC]` by series plugin because entity has already been downloaded
2022-11-26 13:47:43 DEBUG series ASW start with entities: ['[ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC]']
2022-11-26 13:47:43 DEBUG series ASW current entities: ['[ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC]']
2022-11-26 13:47:43 DEBUG series ASW -------------------- process_propers -->
2022-11-26 13:47:43 DEBUG series ASW propers - downloaded qualities: {}
2022-11-26 13:47:43 DEBUG series ASW continuing w. entities: ['[ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC]']
2022-11-26 13:47:43 DEBUG series ASW best entity is: `[ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC]`
2022-11-26 13:47:43 DEBUG series ASW episode tracking disabled
2022-11-26 13:47:43 VERBOSE task ASW ACCEPTED: `[ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC]` by series plugin because choosing first acceptable match
2022-11-26 13:47:43 DEBUG series ASW start with entities: ['[ASW] Bocchi the Rock! - 07 [1080p HEVC x265 10Bit][AAC]']
2022-11-26 13:47:43 DEBUG series ASW current entities: ['[ASW] Bocchi the Rock! - 07 [1080p HEVC x265 10Bit][AAC]']
2022-11-26 13:47:43 DEBUG series ASW -------------------- process_propers -->
2022-11-26 13:47:43 DEBUG series ASW propers - downloaded qualities: {<Quality(resolution=1080p,source=unknown,codec=unknown,color_range=unknown,audio=unknown)>: 0}
2022-11-26 13:47:43 VERBOSE task ASW REJECTED: `[ASW] Bocchi the Rock! - 07 [1080p HEVC x265 10Bit][AAC]` by series plugin because entity has already been downloaded
2022-11-26 13:47:43 DEBUG series ASW start with entities: ['[ASW] 4-nin wa Sorezore Uso wo Tsuku - 06 [1080p HEVC x265 10Bit][AAC]']
2022-11-26 13:47:43 DEBUG series ASW current entities: ['[ASW] 4-nin wa Sorezore Uso wo Tsuku - 06 [1080p HEVC x265 10Bit][AAC]']
2022-11-26 13:47:43 DEBUG series ASW -------------------- process_propers -->
2022-11-26 13:47:43 DEBUG series ASW propers - downloaded qualities: {<Quality(resolution=1080p,source=unknown,codec=unknown,color_range=unknown,audio=unknown)>: 0}
2022-11-26 13:47:43 VERBOSE task ASW REJECTED: `[ASW] 4-nin wa Sorezore Uso wo Tsuku - 06 [1080p HEVC x265 10Bit][AAC]` by series plugin because entity has already been downloaded
2022-11-26 13:47:43 DEBUG series ASW processing series took 0.02766646000000028
2022-11-26 13:47:43 DEBUG parser_internal ASW Parsing series: `[ASW] Bocchi the Rock! - 01 [1080p HEVC][EDC91675].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 13:47:43 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[ASW] Bocchi the Rock! - 01 [1080p HEVC][EDC91675].mkv,name=Bocchi the Rock!,id=1,season=0,season_pack=None,episode=1,quality=1080p h265,proper=0,status=OK)> (in 0.36907600000013474 ms)
2022-11-26 13:47:43 DEBUG exists_series ASW name [ASW] Bocchi the Rock! - 01 [1080p HEVC][EDC91675].mkv is same series as Bocchi the Rock!
2022-11-26 13:47:43 DEBUG exists_series ASW disk_parser.identifier = 1
2022-11-26 13:47:43 DEBUG exists_series ASW disk_parser.quality = 1080p h265
2022-11-26 13:47:43 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 13:47:43 DEBUG exists_series ASW series_parser.identifier = 8
2022-11-26 13:47:44 DEBUG parser_internal ASW Parsing series: `[ASW] Bocchi the Rock! - 02 [1080p HEVC][2C494390].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 13:47:44 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[ASW] Bocchi the Rock! - 02 [1080p HEVC][2C494390].mkv,name=Bocchi the Rock!,id=2,season=0,season_pack=None,episode=2,quality=1080p h265,proper=0,status=OK)> (in 0.33465299999990705 ms)
2022-11-26 13:47:44 DEBUG exists_series ASW name [ASW] Bocchi the Rock! - 02 [1080p HEVC][2C494390].mkv is same series as Bocchi the Rock!
2022-11-26 13:47:44 DEBUG exists_series ASW disk_parser.identifier = 2
2022-11-26 13:47:44 DEBUG exists_series ASW disk_parser.quality = 1080p h265
2022-11-26 13:47:44 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 13:47:44 DEBUG exists_series ASW series_parser.identifier = 8
2022-11-26 13:47:44 DEBUG parser_internal ASW Parsing series: `[ASW] Bocchi the Rock! - 05 [1080p HEVC][CDE54F81].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 13:47:44 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[ASW] Bocchi the Rock! - 05 [1080p HEVC][CDE54F81].mkv,name=Bocchi the Rock!,id=5,season=0,season_pack=None,episode=5,quality=1080p h265,proper=0,status=OK)> (in 0.34446600000004324 ms)
2022-11-26 13:47:44 DEBUG exists_series ASW name [ASW] Bocchi the Rock! - 05 [1080p HEVC][CDE54F81].mkv is same series as Bocchi the Rock!
2022-11-26 13:47:44 DEBUG exists_series ASW disk_parser.identifier = 5
2022-11-26 13:47:44 DEBUG exists_series ASW disk_parser.quality = 1080p h265
2022-11-26 13:47:44 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 13:47:44 DEBUG exists_series ASW series_parser.identifier = 8
2022-11-26 13:47:44 DEBUG parser_internal ASW Parsing series: `[SubsPlease] Bocchi the Rock! - 03 (1080p) [1F17BE65].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 13:47:44 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 03 (1080p) [1F17BE65].mkv,name=Bocchi the Rock!,id=3,season=0,season_pack=None,episode=3,quality=1080p,proper=0,status=OK)> (in 0.33642299999980807 ms)
2022-11-26 13:47:44 DEBUG exists_series ASW name [SubsPlease] Bocchi the Rock! - 03 (1080p) [1F17BE65].mkv is same series as Bocchi the Rock!
2022-11-26 13:47:44 DEBUG exists_series ASW disk_parser.identifier = 3
2022-11-26 13:47:44 DEBUG exists_series ASW disk_parser.quality = 1080p
2022-11-26 13:47:44 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 13:47:44 DEBUG exists_series ASW series_parser.identifier = 8
2022-11-26 13:47:44 DEBUG parser_internal ASW Parsing series: `[SubsPlease] Bocchi the Rock! - 04 (1080p) [10FE594B].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 13:47:44 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 04 (1080p) [10FE594B].mkv,name=Bocchi the Rock!,id=4,season=0,season_pack=None,episode=4,quality=1080p,proper=0,status=OK)> (in 0.3240060000000433 ms)
2022-11-26 13:47:44 DEBUG exists_series ASW name [SubsPlease] Bocchi the Rock! - 04 (1080p) [10FE594B].mkv is same series as Bocchi the Rock!
2022-11-26 13:47:44 DEBUG exists_series ASW disk_parser.identifier = 4
2022-11-26 13:47:44 DEBUG exists_series ASW disk_parser.quality = 1080p
2022-11-26 13:47:44 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 13:47:44 DEBUG exists_series ASW series_parser.identifier = 8
2022-11-26 13:47:44 DEBUG parser_internal ASW Parsing series: `[SubsPlease] Bocchi the Rock! - 06 (1080p) [43102018].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 13:47:44 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 06 (1080p) [43102018].mkv,name=Bocchi the Rock!,id=6,season=0,season_pack=None,episode=6,quality=1080p,proper=0,status=OK)> (in 0.3854119999999739 ms)
2022-11-26 13:47:44 DEBUG exists_series ASW name [SubsPlease] Bocchi the Rock! - 06 (1080p) [43102018].mkv is same series as Bocchi the Rock!
2022-11-26 13:47:44 DEBUG exists_series ASW disk_parser.identifier = 6
2022-11-26 13:47:44 DEBUG exists_series ASW disk_parser.quality = 1080p
2022-11-26 13:47:44 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 13:47:44 DEBUG exists_series ASW series_parser.identifier = 8
2022-11-26 13:47:44 DEBUG parser_internal ASW Parsing series: `[SubsPlease] Bocchi the Rock! - 07 (1080p) [D9ACC05A].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 13:47:44 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 07 (1080p) [D9ACC05A].mkv,name=Bocchi the Rock!,id=7,season=0,season_pack=None,episode=7,quality=1080p,proper=0,status=OK)> (in 0.37355700000007985 ms)
2022-11-26 13:47:44 DEBUG exists_series ASW name [SubsPlease] Bocchi the Rock! - 07 (1080p) [D9ACC05A].mkv is same series as Bocchi the Rock!
2022-11-26 13:47:44 DEBUG exists_series ASW disk_parser.identifier = 7
2022-11-26 13:47:44 DEBUG exists_series ASW disk_parser.quality = 1080p
2022-11-26 13:47:44 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 13:47:44 DEBUG exists_series ASW series_parser.identifier = 8
2022-11-26 13:47:44 DEBUG urlrewriter ASW Checking 1 entries
2022-11-26 13:47:44 INFO download ASW Downloading: [ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC]
2022-11-26 13:47:44 DEBUG download ASW Downloading url 'https://nyaa.si/download/1607177.torrent'
2022-11-26 13:47:44 DEBUG utils.requests ASW GETing URL https://nyaa.si/download/1607177.torrent with args () and kwargs {'auth': None, 'headers': {'User-Agent': 'FlexGet/3.5.5 (www.flexget.com)', 'Accept-Encoding': 'gzip, deflate, br', 'Accept': '*/*', 'Connection': 'keep-alive'}, 'allow_redirects': True, 'timeout': 30}
2022-11-26 13:47:44 DEBUG download ASW [ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC] field file set to: /tmp/tmpvbu5f773/adba6c44d752d4c39d22bf73d161f48d
2022-11-26 13:47:44 DEBUG download ASW Found filename from headers: %5BASW%5D%20Bocchi%20the%20Rock%21%20-%2008%20%5B1080p%20HEVC%5D%5B3C1AEDA2%5D.mkv.torrent
2022-11-26 13:47:44 DEBUG download ASW Mimetype guess for application/x-bittorrent is ['.torrent']
2022-11-26 13:47:44 DEBUG download ASW Filename %5BASW%5D%20Bocchi%20the%20Rock%21%20-%2008%20%5B1080p%20HEVC%5D%5B3C1AEDA2%5D.mkv.torrent extension matches to mime-type
2022-11-26 13:47:44 DEBUG download ASW Finishing download_entry() with filename %5BASW%5D%20Bocchi%20the%20Rock%21%20-%2008%20%5B1080p%20HEVC%5D%5B3C1AEDA2%5D.mkv.torrent
2022-11-26 13:47:44 DEBUG download ASW Successfully retrieved [ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC] from https://nyaa.si/download/1607177.torrent
2022-11-26 13:47:44 VERBOSE details ASW Summary - Accepted: 1 (Rejected: 4 Undecided: 71 Failed: 0)
2022-11-26 13:47:44 DEBUG modif_torrent ASW [ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC] seems to be a torrent
2022-11-26 13:47:44 DEBUG torrent_files ASW [ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC] files: ['[ASW] Bocchi the Rock! - 08 [1080p HEVC][3C1AEDA2].mkv']
2022-11-26 13:47:44 DEBUG torrent_size ASW [ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC] size: 250.55738925933838 MB
2022-11-26 13:47:44 DEBUG transmission ASW Connecting to http://127.0.0.1:9091/transmission/
2022-11-26 13:47:44 DEBUG transmission ASW Successfully connected to transmission.
2022-11-26 13:47:44 DEBUG utils.template ASW Error during rendering: (UndefinedError) 'tvdb_series_name' is undefined
2022-11-26 13:47:44 ERROR set ASW Could not set path for [ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC]: (UndefinedError) 'tvdb_series_name' is undefined
2022-11-26 13:47:44 DEBUG utils.template ASW Error during rendering: (UndefinedError) 'tvdb_series_name' is undefined
2022-11-26 13:47:44 ERROR set ASW Could not set content_filename for [ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC]: (UndefinedError) 'tvdb_series_name' is undefined
2022-11-26 13:47:44 CRITICAL task ASW BUG: Unhandled error in plugin transmission: Trying to render non string template or unrecognized template format, got None
Traceback (most recent call last):
File "/usr/lib/python3.11/threading.py", line 995, in _bootstrap
self._bootstrap_inner()
│ └ <function Thread._bootstrap_inner at 0x7f440a1c5440>
└ <Thread(task_queue, started daemon 139930109363776)>
File "/usr/lib/python3.11/threading.py", line 1038, in _bootstrap_inner
self.run()
│ └ <function Thread.run at 0x7f440a1c5120>
└ <Thread(task_queue, started daemon 139930109363776)>
File "/usr/lib/python3.11/threading.py", line 975, in run
self._target(*self._args, **self._kwargs)
│ │ │ │ │ └ {}
│ │ │ │ └ <Thread(task_queue, started daemon 139930109363776)>
│ │ │ └ ()
│ │ └ <Thread(task_queue, started daemon 139930109363776)>
│ └ <bound method TaskQueue.run of <flexget.task_queue.TaskQueue object at 0x7f44049be6d0>>
└ <Thread(task_queue, started daemon 139930109363776)>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task_queue.py", line 47, in run
self.current_task.execute()
│ │ └ <function Task.execute at 0x7f4407894f40>
│ └ <flexget.task.Task object at 0x7f4404782e90>
└ <flexget.task_queue.TaskQueue object at 0x7f44049be6d0>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 87, in wrapper
return func(self, *args, **kw)
│ │ │ └ {}
│ │ └ ()
│ └ <flexget.task.Task object at 0x7f4404782e90>
└ <function Task.execute at 0x7f4407894ea0>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 727, in execute
self._execute()
│ └ <function Task._execute at 0x7f4407894e00>
└ <flexget.task.Task object at 0x7f4404782e90>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 696, in _execute
self.__run_task_phase(phase)
│ └ 'output'
└ <flexget.task.Task object at 0x7f4404782e90>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 514, in __run_task_phase
response = self.__run_plugin(plugin, phase, args)
│ │ │ └ (<flexget.task.Task object at 0x7f4404782e90>, {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', ...
│ │ └ 'output'
│ └ <PluginInfo(name=transmission)>
└ <flexget.task.Task object at 0x7f4404782e90>
> File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 547, in __run_plugin
result = method(*args, **kwargs)
│ │ └ {}
│ └ (<flexget.task.Task object at 0x7f4404782e90>, {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', ...
└ <Event(name=plugin.transmission.output,func=on_task_output,priority=135)>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/event.py", line 20, in __call__
return self.func(*args, **kwargs)
│ │ │ └ {}
│ │ └ (<flexget.task.Task object at 0x7f4404782e90>, {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', ...
│ └ <bound method PluginTransmission.on_task_output of <flexget.plugins.clients.transmission.PluginTransmission object at 0x7f440...
└ <Event(name=plugin.transmission.output,func=on_task_output,priority=135)>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 380, in on_task_output
options = self._make_torrent_options_dict(config, entry)
│ │ │ └ <Entry(title=[ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC],state=accepted)>
│ │ └ {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', 'enabled': True, 'main_file_ratio': 0.9, 'actio...
│ └ <function PluginTransmission._make_torrent_options_dict at 0x7f4406712160>
└ <flexget.plugins.clients.transmission.PluginTransmission object at 0x7f4405e7ac10>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 741, in _make_torrent_options_dict
post['content_filename'] = entry.render(opt_dic['content_filename'])
│ │ │ └ {'path': None, 'main_file_only': False, 'main_file_ratio': 0.9, 'magnetization_timeout': 0, 'include_subs': False, 'content_f...
│ │ └ <function Entry.render at 0x7f4407ced580>
│ └ <Entry(title=[ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC],state=accepted)>
└ {'main_file_only': False, 'main_file_ratio': 0.9, 'magnetization_timeout': 0, 'include_subs': False}
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/entry.py", line 312, in render
raise ValueError(
ValueError: Trying to render non string template or unrecognized template format, got None
Traceback (most recent call last):
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 547, in __run_plugin
result = method(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/event.py", line 20, in __call__
return self.func(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 380, in on_task_output
options = self._make_torrent_options_dict(config, entry)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 741, in _make_torrent_options_dict
post['content_filename'] = entry.render(opt_dic['content_filename'])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/entry.py", line 312, in render
raise ValueError(
ValueError: Trying to render non string template or unrecognized template format, got None

View File

@ -0,0 +1,186 @@
2022-11-26 13:47:46 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[ASW] 4-nin wa Sorezore Uso wo Tsuku - 04 [1080p HEVC][0EB9158A].mkv,name=4-nin wa Sorezore Uso wo Tsuku,id=4,season=0,season_pack=None,episode=4,quality=1080p h265,proper=0,status=OK)> (in 0.3234229999997673 ms)
2022-11-26 13:47:46 DEBUG exists_series subsplease name [ASW] 4-nin wa Sorezore Uso wo Tsuku - 04 [1080p HEVC][0EB9158A].mkv is same series as 4-nin wa Sorezore Uso wo Tsuku
2022-11-26 13:47:46 DEBUG exists_series subsplease disk_parser.identifier = 4
2022-11-26 13:47:46 DEBUG exists_series subsplease disk_parser.quality = 1080p h265
2022-11-26 13:47:46 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 13:47:46 DEBUG exists_series subsplease series_parser.identifier = 7
2022-11-26 13:47:46 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 01 (1080p) [F51637F7].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 13:47:46 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 01 (1080p) [F51637F7].mkv,name=4-nin wa Sorezore Uso wo Tsuku,id=1,season=0,season_pack=None,episode=1,quality=1080p,proper=0,status=OK)> (in 0.31679800000006253 ms)
2022-11-26 13:47:46 DEBUG exists_series subsplease name [SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 01 (1080p) [F51637F7].mkv is same series as 4-nin wa Sorezore Uso wo Tsuku
2022-11-26 13:47:46 DEBUG exists_series subsplease disk_parser.identifier = 1
2022-11-26 13:47:46 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 13:47:46 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 13:47:46 DEBUG exists_series subsplease series_parser.identifier = 7
2022-11-26 13:47:46 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 02 (1080p) [A5D310BC].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 13:47:46 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 02 (1080p) [A5D310BC].mkv,name=4-nin wa Sorezore Uso wo Tsuku,id=2,season=0,season_pack=None,episode=2,quality=1080p,proper=0,status=OK)> (in 0.32874899999990603 ms)
2022-11-26 13:47:46 DEBUG exists_series subsplease name [SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 02 (1080p) [A5D310BC].mkv is same series as 4-nin wa Sorezore Uso wo Tsuku
2022-11-26 13:47:46 DEBUG exists_series subsplease disk_parser.identifier = 2
2022-11-26 13:47:46 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 13:47:46 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 13:47:46 DEBUG exists_series subsplease series_parser.identifier = 7
2022-11-26 13:47:46 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 05 (1080p) [E5F426C8].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 13:47:46 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 05 (1080p) [E5F426C8].mkv,name=4-nin wa Sorezore Uso wo Tsuku,id=5,season=0,season_pack=None,episode=5,quality=1080p,proper=0,status=OK)> (in 0.38825500000028157 ms)
2022-11-26 13:47:46 DEBUG exists_series subsplease name [SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 05 (1080p) [E5F426C8].mkv is same series as 4-nin wa Sorezore Uso wo Tsuku
2022-11-26 13:47:46 DEBUG exists_series subsplease disk_parser.identifier = 5
2022-11-26 13:47:46 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 13:47:46 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 13:47:46 DEBUG exists_series subsplease series_parser.identifier = 7
2022-11-26 13:47:46 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 06 (1080p) [84E1707D].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 13:47:46 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 06 (1080p) [84E1707D].mkv,name=4-nin wa Sorezore Uso wo Tsuku,id=6,season=0,season_pack=None,episode=6,quality=1080p,proper=0,status=OK)> (in 0.3287960000002421 ms)
2022-11-26 13:47:46 DEBUG exists_series subsplease name [SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 06 (1080p) [84E1707D].mkv is same series as 4-nin wa Sorezore Uso wo Tsuku
2022-11-26 13:47:46 DEBUG exists_series subsplease disk_parser.identifier = 6
2022-11-26 13:47:46 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 13:47:46 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 13:47:46 DEBUG exists_series subsplease series_parser.identifier = 7
2022-11-26 13:47:46 DEBUG parser_internal subsplease Parsing series: `[ASW] Bocchi the Rock! - 01 [1080p HEVC][EDC91675].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 13:47:46 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[ASW] Bocchi the Rock! - 01 [1080p HEVC][EDC91675].mkv,name=Bocchi the Rock!,id=1,season=0,season_pack=None,episode=1,quality=1080p h265,proper=0,status=OK)> (in 0.3166179999998242 ms)
2022-11-26 13:47:46 DEBUG exists_series subsplease name [ASW] Bocchi the Rock! - 01 [1080p HEVC][EDC91675].mkv is same series as Bocchi the Rock!
2022-11-26 13:47:46 DEBUG exists_series subsplease disk_parser.identifier = 1
2022-11-26 13:47:46 DEBUG exists_series subsplease disk_parser.quality = 1080p h265
2022-11-26 13:47:46 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 13:47:46 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 13:47:46 DEBUG parser_internal subsplease Parsing series: `[ASW] Bocchi the Rock! - 02 [1080p HEVC][2C494390].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 13:47:46 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[ASW] Bocchi the Rock! - 02 [1080p HEVC][2C494390].mkv,name=Bocchi the Rock!,id=2,season=0,season_pack=None,episode=2,quality=1080p h265,proper=0,status=OK)> (in 0.3188080000002813 ms)
2022-11-26 13:47:46 DEBUG exists_series subsplease name [ASW] Bocchi the Rock! - 02 [1080p HEVC][2C494390].mkv is same series as Bocchi the Rock!
2022-11-26 13:47:46 DEBUG exists_series subsplease disk_parser.identifier = 2
2022-11-26 13:47:46 DEBUG exists_series subsplease disk_parser.quality = 1080p h265
2022-11-26 13:47:46 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 13:47:46 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 13:47:46 DEBUG parser_internal subsplease Parsing series: `[ASW] Bocchi the Rock! - 05 [1080p HEVC][CDE54F81].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 13:47:46 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[ASW] Bocchi the Rock! - 05 [1080p HEVC][CDE54F81].mkv,name=Bocchi the Rock!,id=5,season=0,season_pack=None,episode=5,quality=1080p h265,proper=0,status=OK)> (in 0.35413800000005935 ms)
2022-11-26 13:47:46 DEBUG exists_series subsplease name [ASW] Bocchi the Rock! - 05 [1080p HEVC][CDE54F81].mkv is same series as Bocchi the Rock!
2022-11-26 13:47:46 DEBUG exists_series subsplease disk_parser.identifier = 5
2022-11-26 13:47:46 DEBUG exists_series subsplease disk_parser.quality = 1080p h265
2022-11-26 13:47:46 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 13:47:46 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 13:47:46 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Bocchi the Rock! - 03 (1080p) [1F17BE65].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 13:47:46 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 03 (1080p) [1F17BE65].mkv,name=Bocchi the Rock!,id=3,season=0,season_pack=None,episode=3,quality=1080p,proper=0,status=OK)> (in 0.33716299999975163 ms)
2022-11-26 13:47:46 DEBUG exists_series subsplease name [SubsPlease] Bocchi the Rock! - 03 (1080p) [1F17BE65].mkv is same series as Bocchi the Rock!
2022-11-26 13:47:46 DEBUG exists_series subsplease disk_parser.identifier = 3
2022-11-26 13:47:46 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 13:47:46 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 13:47:46 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 13:47:46 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Bocchi the Rock! - 04 (1080p) [10FE594B].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 13:47:46 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 04 (1080p) [10FE594B].mkv,name=Bocchi the Rock!,id=4,season=0,season_pack=None,episode=4,quality=1080p,proper=0,status=OK)> (in 0.3336769999999767 ms)
2022-11-26 13:47:46 DEBUG exists_series subsplease name [SubsPlease] Bocchi the Rock! - 04 (1080p) [10FE594B].mkv is same series as Bocchi the Rock!
2022-11-26 13:47:46 DEBUG exists_series subsplease disk_parser.identifier = 4
2022-11-26 13:47:46 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 13:47:46 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 13:47:46 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 13:47:46 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Bocchi the Rock! - 06 (1080p) [43102018].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 13:47:46 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 06 (1080p) [43102018].mkv,name=Bocchi the Rock!,id=6,season=0,season_pack=None,episode=6,quality=1080p,proper=0,status=OK)> (in 0.3181939999996608 ms)
2022-11-26 13:47:46 DEBUG exists_series subsplease name [SubsPlease] Bocchi the Rock! - 06 (1080p) [43102018].mkv is same series as Bocchi the Rock!
2022-11-26 13:47:46 DEBUG exists_series subsplease disk_parser.identifier = 6
2022-11-26 13:47:46 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 13:47:46 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 13:47:46 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 13:47:46 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Bocchi the Rock! - 07 (1080p) [D9ACC05A].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 13:47:46 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 07 (1080p) [D9ACC05A].mkv,name=Bocchi the Rock!,id=7,season=0,season_pack=None,episode=7,quality=1080p,proper=0,status=OK)> (in 0.3146640000002421 ms)
2022-11-26 13:47:46 DEBUG exists_series subsplease name [SubsPlease] Bocchi the Rock! - 07 (1080p) [D9ACC05A].mkv is same series as Bocchi the Rock!
2022-11-26 13:47:46 DEBUG exists_series subsplease disk_parser.identifier = 7
2022-11-26 13:47:46 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 13:47:46 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 13:47:46 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 13:47:46 DEBUG parser_internal subsplease Parsing series: `[ASW] 4-nin wa Sorezore Uso wo Tsuku - 03 [1080p HEVC][003636E5].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 13:47:46 DEBUG parser_internal subsplease Parsing series: `[ASW] 4-nin wa Sorezore Uso wo Tsuku - 04 [1080p HEVC][0EB9158A].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 13:47:46 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 01 (1080p) [F51637F7].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 13:47:46 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 02 (1080p) [A5D310BC].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 13:47:46 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 05 (1080p) [E5F426C8].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 13:47:46 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 06 (1080p) [84E1707D].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 13:47:46 DEBUG urlrewriter subsplease Checking 2 entries
2022-11-26 13:47:46 DEBUG download subsplease Accepting magnet url for [SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 07 (1080p) [2090CD83].mkv
2022-11-26 13:47:46 DEBUG download subsplease Accepting magnet url for [SubsPlease] Bocchi the Rock! - 08 (1080p) [D7E0A44D].mkv
2022-11-26 13:47:46 VERBOSE details subsplease Summary - Accepted: 2 (Rejected: 2 Undecided: 49 Failed: 0)
2022-11-26 13:47:46 DEBUG transmission subsplease Connecting to http://127.0.0.1:9091/transmission/
2022-11-26 13:47:46 DEBUG transmission subsplease Successfully connected to transmission.
2022-11-26 13:47:47 DEBUG utils.template subsplease Error during rendering: (UndefinedError) 'tvdb_series_name' is undefined
2022-11-26 13:47:47 ERROR set subsplease Could not set path for [SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 07 (1080p) [2090CD83].mkv: (UndefinedError) 'tvdb_series_name' is undefined
2022-11-26 13:47:47 DEBUG utils.template subsplease Error during rendering: (UndefinedError) 'tvdb_series_name' is undefined
2022-11-26 13:47:47 ERROR set subsplease Could not set content_filename for [SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 07 (1080p) [2090CD83].mkv: (UndefinedError) 'tvdb_series_name' is undefined
2022-11-26 13:47:47 CRITICAL task subsplease BUG: Unhandled error in plugin transmission: Trying to render non string template or unrecognized template format, got None
Traceback (most recent call last):
File "/usr/lib/python3.11/threading.py", line 995, in _bootstrap
self._bootstrap_inner()
│ └ <function Thread._bootstrap_inner at 0x7f440a1c5440>
└ <Thread(task_queue, started daemon 139930109363776)>
File "/usr/lib/python3.11/threading.py", line 1038, in _bootstrap_inner
self.run()
│ └ <function Thread.run at 0x7f440a1c5120>
└ <Thread(task_queue, started daemon 139930109363776)>
File "/usr/lib/python3.11/threading.py", line 975, in run
self._target(*self._args, **self._kwargs)
│ │ │ │ │ └ {}
│ │ │ │ └ <Thread(task_queue, started daemon 139930109363776)>
│ │ │ └ ()
│ │ └ <Thread(task_queue, started daemon 139930109363776)>
│ └ <bound method TaskQueue.run of <flexget.task_queue.TaskQueue object at 0x7f44049be6d0>>
└ <Thread(task_queue, started daemon 139930109363776)>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task_queue.py", line 47, in run
self.current_task.execute()
│ │ └ <function Task.execute at 0x7f4407894f40>
│ └ <flexget.task.Task object at 0x7f4404783750>
└ <flexget.task_queue.TaskQueue object at 0x7f44049be6d0>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 87, in wrapper
return func(self, *args, **kw)
│ │ │ └ {}
│ │ └ ()
│ └ <flexget.task.Task object at 0x7f4404783750>
└ <function Task.execute at 0x7f4407894ea0>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 727, in execute
self._execute()
│ └ <function Task._execute at 0x7f4407894e00>
└ <flexget.task.Task object at 0x7f4404783750>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 696, in _execute
self.__run_task_phase(phase)
│ └ 'output'
└ <flexget.task.Task object at 0x7f4404783750>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 514, in __run_task_phase
response = self.__run_plugin(plugin, phase, args)
│ │ │ └ (<flexget.task.Task object at 0x7f4404783750>, {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', ...
│ │ └ 'output'
│ └ <PluginInfo(name=transmission)>
└ <flexget.task.Task object at 0x7f4404783750>
> File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 547, in __run_plugin
result = method(*args, **kwargs)
│ │ └ {}
│ └ (<flexget.task.Task object at 0x7f4404783750>, {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', ...
└ <Event(name=plugin.transmission.output,func=on_task_output,priority=135)>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/event.py", line 20, in __call__
return self.func(*args, **kwargs)
│ │ │ └ {}
│ │ └ (<flexget.task.Task object at 0x7f4404783750>, {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', ...
│ └ <bound method PluginTransmission.on_task_output of <flexget.plugins.clients.transmission.PluginTransmission object at 0x7f440...
└ <Event(name=plugin.transmission.output,func=on_task_output,priority=135)>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 380, in on_task_output
options = self._make_torrent_options_dict(config, entry)
│ │ │ └ <Entry(title=[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 07 (1080p) [2090CD83].mkv,state=accepted)>
│ │ └ {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', 'enabled': True, 'main_file_ratio': 0.9, 'actio...
│ └ <function PluginTransmission._make_torrent_options_dict at 0x7f4406712160>
└ <flexget.plugins.clients.transmission.PluginTransmission object at 0x7f4405e7ac10>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 741, in _make_torrent_options_dict
post['content_filename'] = entry.render(opt_dic['content_filename'])
│ │ │ └ {'path': None, 'main_file_only': False, 'main_file_ratio': 0.9, 'magnetization_timeout': 0, 'include_subs': False, 'content_f...
│ │ └ <function Entry.render at 0x7f4407ced580>
│ └ <Entry(title=[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 07 (1080p) [2090CD83].mkv,state=accepted)>
└ {'main_file_only': False, 'main_file_ratio': 0.9, 'magnetization_timeout': 0, 'include_subs': False}
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/entry.py", line 312, in render
raise ValueError(
ValueError: Trying to render non string template or unrecognized template format, got None
Traceback (most recent call last):
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 547, in __run_plugin
result = method(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/event.py", line 20, in __call__
return self.func(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 380, in on_task_output
options = self._make_torrent_options_dict(config, entry)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 741, in _make_torrent_options_dict
post['content_filename'] = entry.render(opt_dic['content_filename'])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/entry.py", line 312, in render
raise ValueError(
ValueError: Trying to render non string template or unrecognized template format, got None

View File

@ -0,0 +1,186 @@
2022-11-26 14:15:05 DEBUG parser_internal ASW Parsing series: `[ASW] 4-nin wa Sorezore Uso wo Tsuku - 06 [1080p HEVC x265 10Bit][AAC]` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku', 'identified_by': 'sequence', 'alternate_names': [], 'name_regexps': [], 'strict_name': False, 'allow_groups': [], 'date_yearfirst': None, 'date_dayfirst': None, 'special_ids': [], 'prefer_specials': None, 'assume_special': None, 'ep_regexps': [], 'date_regexps': [], 'sequence_regexps': [], 'id_regexps': []}
2022-11-26 14:15:05 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[ASW] 4-nin wa Sorezore Uso wo Tsuku - 06 [1080p HEVC x265 10Bit][AAC],name=4-nin wa Sorezore Uso wo Tsuku,id=6,season=0,season_pack=None,episode=6,quality=1080p h265 10bit aac,proper=0,status=OK)> (in 0.31480200000011394 ms)
2022-11-26 14:15:05 DEBUG series ASW `[ASW] 4-nin wa Sorezore Uso wo Tsuku - 06 [1080p HEVC x265 10Bit][AAC]` detected as `<SeriesParseResult(data=[ASW] 4-nin wa Sorezore Uso wo Tsuku - 06 [1080p HEVC x265 10Bit][AAC],name=4-nin wa Sorezore Uso wo Tsuku,id=6,season=0,season_pack=None,episode=6,quality=1080p h265 10bit aac,proper=0,special=False,status=OK)>`, field: `title`
2022-11-26 14:15:05 DEBUG series ASW series on_task_metainfo took 0.1826672180000002 to parse
2022-11-26 14:15:05 DEBUG seen ASW Rejecting 'https://nyaa.si/download/1606176.torrent' '[ASW] Do It Yourself!! - 08 [1080p HEVC x265 10Bit][AAC]' because of seen '[ASW] Do It Yourself!! - 08 [1080p HEVC x265 10Bit][AAC]'
2022-11-26 14:15:05 VERBOSE task ASW REJECTED: `[ASW] Do It Yourself!! - 08 [1080p HEVC x265 10Bit][AAC]` by seen plugin because entry with title `[ASW] Do It Yourself!! - 08 [1080p HEVC x265 10Bit][AAC]` is already marked seen in the task ASW at 2022-11-26 07:48
2022-11-26 14:15:05 DEBUG series ASW start with entities: ['[ASW] Chainsaw Man - 07 [1080p HEVC x265 10Bit][AAC]']
2022-11-26 14:15:05 DEBUG series ASW current entities: ['[ASW] Chainsaw Man - 07 [1080p HEVC x265 10Bit][AAC]']
2022-11-26 14:15:05 DEBUG series ASW -------------------- process_propers -->
2022-11-26 14:15:05 DEBUG series ASW propers - downloaded qualities: {<Quality(resolution=1080p,source=unknown,codec=unknown,color_range=unknown,audio=unknown)>: 0}
2022-11-26 14:15:05 VERBOSE task ASW REJECTED: `[ASW] Chainsaw Man - 07 [1080p HEVC x265 10Bit][AAC]` by series plugin because entity has already been downloaded
2022-11-26 14:15:05 DEBUG series ASW start with entities: ['[ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC]']
2022-11-26 14:15:05 DEBUG series ASW current entities: ['[ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC]']
2022-11-26 14:15:05 DEBUG series ASW -------------------- process_propers -->
2022-11-26 14:15:05 DEBUG series ASW propers - downloaded qualities: {}
2022-11-26 14:15:05 DEBUG series ASW continuing w. entities: ['[ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC]']
2022-11-26 14:15:05 DEBUG series ASW best entity is: `[ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC]`
2022-11-26 14:15:05 DEBUG series ASW episode tracking disabled
2022-11-26 14:15:05 VERBOSE task ASW ACCEPTED: `[ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC]` by series plugin because choosing first acceptable match
2022-11-26 14:15:05 DEBUG series ASW start with entities: ['[ASW] Bocchi the Rock! - 07 [1080p HEVC x265 10Bit][AAC]']
2022-11-26 14:15:05 DEBUG series ASW current entities: ['[ASW] Bocchi the Rock! - 07 [1080p HEVC x265 10Bit][AAC]']
2022-11-26 14:15:05 DEBUG series ASW -------------------- process_propers -->
2022-11-26 14:15:05 DEBUG series ASW propers - downloaded qualities: {<Quality(resolution=1080p,source=unknown,codec=unknown,color_range=unknown,audio=unknown)>: 0}
2022-11-26 14:15:05 VERBOSE task ASW REJECTED: `[ASW] Bocchi the Rock! - 07 [1080p HEVC x265 10Bit][AAC]` by series plugin because entity has already been downloaded
2022-11-26 14:15:05 DEBUG series ASW start with entities: ['[ASW] 4-nin wa Sorezore Uso wo Tsuku - 06 [1080p HEVC x265 10Bit][AAC]']
2022-11-26 14:15:05 DEBUG series ASW current entities: ['[ASW] 4-nin wa Sorezore Uso wo Tsuku - 06 [1080p HEVC x265 10Bit][AAC]']
2022-11-26 14:15:05 DEBUG series ASW -------------------- process_propers -->
2022-11-26 14:15:05 DEBUG series ASW propers - downloaded qualities: {<Quality(resolution=1080p,source=unknown,codec=unknown,color_range=unknown,audio=unknown)>: 0}
2022-11-26 14:15:05 VERBOSE task ASW REJECTED: `[ASW] 4-nin wa Sorezore Uso wo Tsuku - 06 [1080p HEVC x265 10Bit][AAC]` by series plugin because entity has already been downloaded
2022-11-26 14:15:05 DEBUG series ASW processing series took 0.02714907199999983
2022-11-26 14:15:05 DEBUG parser_internal ASW Parsing series: `[ASW] Bocchi the Rock! - 01 [1080p HEVC][EDC91675].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 14:15:05 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[ASW] Bocchi the Rock! - 01 [1080p HEVC][EDC91675].mkv,name=Bocchi the Rock!,id=1,season=0,season_pack=None,episode=1,quality=1080p h265,proper=0,status=OK)> (in 0.35160099999975714 ms)
2022-11-26 14:15:05 DEBUG exists_series ASW name [ASW] Bocchi the Rock! - 01 [1080p HEVC][EDC91675].mkv is same series as Bocchi the Rock!
2022-11-26 14:15:05 DEBUG exists_series ASW disk_parser.identifier = 1
2022-11-26 14:15:05 DEBUG exists_series ASW disk_parser.quality = 1080p h265
2022-11-26 14:15:05 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 14:15:05 DEBUG exists_series ASW series_parser.identifier = 8
2022-11-26 14:15:05 DEBUG parser_internal ASW Parsing series: `[ASW] Bocchi the Rock! - 02 [1080p HEVC][2C494390].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 14:15:05 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[ASW] Bocchi the Rock! - 02 [1080p HEVC][2C494390].mkv,name=Bocchi the Rock!,id=2,season=0,season_pack=None,episode=2,quality=1080p h265,proper=0,status=OK)> (in 0.32598700000008307 ms)
2022-11-26 14:15:05 DEBUG exists_series ASW name [ASW] Bocchi the Rock! - 02 [1080p HEVC][2C494390].mkv is same series as Bocchi the Rock!
2022-11-26 14:15:05 DEBUG exists_series ASW disk_parser.identifier = 2
2022-11-26 14:15:05 DEBUG exists_series ASW disk_parser.quality = 1080p h265
2022-11-26 14:15:05 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 14:15:05 DEBUG exists_series ASW series_parser.identifier = 8
2022-11-26 14:15:05 DEBUG parser_internal ASW Parsing series: `[ASW] Bocchi the Rock! - 05 [1080p HEVC][CDE54F81].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 14:15:05 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[ASW] Bocchi the Rock! - 05 [1080p HEVC][CDE54F81].mkv,name=Bocchi the Rock!,id=5,season=0,season_pack=None,episode=5,quality=1080p h265,proper=0,status=OK)> (in 0.30413700000009314 ms)
2022-11-26 14:15:05 DEBUG exists_series ASW name [ASW] Bocchi the Rock! - 05 [1080p HEVC][CDE54F81].mkv is same series as Bocchi the Rock!
2022-11-26 14:15:05 DEBUG exists_series ASW disk_parser.identifier = 5
2022-11-26 14:15:05 DEBUG exists_series ASW disk_parser.quality = 1080p h265
2022-11-26 14:15:05 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 14:15:05 DEBUG exists_series ASW series_parser.identifier = 8
2022-11-26 14:15:05 DEBUG parser_internal ASW Parsing series: `[SubsPlease] Bocchi the Rock! - 03 (1080p) [1F17BE65].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 14:15:05 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 03 (1080p) [1F17BE65].mkv,name=Bocchi the Rock!,id=3,season=0,season_pack=None,episode=3,quality=1080p,proper=0,status=OK)> (in 0.3054250000000813 ms)
2022-11-26 14:15:05 DEBUG exists_series ASW name [SubsPlease] Bocchi the Rock! - 03 (1080p) [1F17BE65].mkv is same series as Bocchi the Rock!
2022-11-26 14:15:05 DEBUG exists_series ASW disk_parser.identifier = 3
2022-11-26 14:15:05 DEBUG exists_series ASW disk_parser.quality = 1080p
2022-11-26 14:15:05 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 14:15:05 DEBUG exists_series ASW series_parser.identifier = 8
2022-11-26 14:15:05 DEBUG parser_internal ASW Parsing series: `[SubsPlease] Bocchi the Rock! - 04 (1080p) [10FE594B].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 14:15:05 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 04 (1080p) [10FE594B].mkv,name=Bocchi the Rock!,id=4,season=0,season_pack=None,episode=4,quality=1080p,proper=0,status=OK)> (in 0.33817299999983064 ms)
2022-11-26 14:15:05 DEBUG exists_series ASW name [SubsPlease] Bocchi the Rock! - 04 (1080p) [10FE594B].mkv is same series as Bocchi the Rock!
2022-11-26 14:15:05 DEBUG exists_series ASW disk_parser.identifier = 4
2022-11-26 14:15:05 DEBUG exists_series ASW disk_parser.quality = 1080p
2022-11-26 14:15:05 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 14:15:05 DEBUG exists_series ASW series_parser.identifier = 8
2022-11-26 14:15:05 DEBUG parser_internal ASW Parsing series: `[SubsPlease] Bocchi the Rock! - 06 (1080p) [43102018].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 14:15:05 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 06 (1080p) [43102018].mkv,name=Bocchi the Rock!,id=6,season=0,season_pack=None,episode=6,quality=1080p,proper=0,status=OK)> (in 0.3605570000000391 ms)
2022-11-26 14:15:05 DEBUG exists_series ASW name [SubsPlease] Bocchi the Rock! - 06 (1080p) [43102018].mkv is same series as Bocchi the Rock!
2022-11-26 14:15:05 DEBUG exists_series ASW disk_parser.identifier = 6
2022-11-26 14:15:05 DEBUG exists_series ASW disk_parser.quality = 1080p
2022-11-26 14:15:05 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 14:15:05 DEBUG exists_series ASW series_parser.identifier = 8
2022-11-26 14:15:05 DEBUG parser_internal ASW Parsing series: `[SubsPlease] Bocchi the Rock! - 07 (1080p) [D9ACC05A].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 14:15:05 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 07 (1080p) [D9ACC05A].mkv,name=Bocchi the Rock!,id=7,season=0,season_pack=None,episode=7,quality=1080p,proper=0,status=OK)> (in 0.36757999999981195 ms)
2022-11-26 14:15:05 DEBUG exists_series ASW name [SubsPlease] Bocchi the Rock! - 07 (1080p) [D9ACC05A].mkv is same series as Bocchi the Rock!
2022-11-26 14:15:05 DEBUG exists_series ASW disk_parser.identifier = 7
2022-11-26 14:15:05 DEBUG exists_series ASW disk_parser.quality = 1080p
2022-11-26 14:15:05 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 14:15:05 DEBUG exists_series ASW series_parser.identifier = 8
2022-11-26 14:15:05 DEBUG urlrewriter ASW Checking 1 entries
2022-11-26 14:15:05 INFO download ASW Downloading: [ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC]
2022-11-26 14:15:05 DEBUG download ASW Downloading url 'https://nyaa.si/download/1607177.torrent'
2022-11-26 14:15:05 DEBUG utils.requests ASW GETing URL https://nyaa.si/download/1607177.torrent with args () and kwargs {'auth': None, 'headers': {'User-Agent': 'FlexGet/3.5.5 (www.flexget.com)', 'Accept-Encoding': 'gzip, deflate, br', 'Accept': '*/*', 'Connection': 'keep-alive'}, 'allow_redirects': True, 'timeout': 30}
2022-11-26 14:15:06 DEBUG download ASW [ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC] field file set to: /tmp/tmpsbd75r70/adba6c44d752d4c39d22bf73d161f48d
2022-11-26 14:15:06 DEBUG download ASW Found filename from headers: %5BASW%5D%20Bocchi%20the%20Rock%21%20-%2008%20%5B1080p%20HEVC%5D%5B3C1AEDA2%5D.mkv.torrent
2022-11-26 14:15:06 DEBUG download ASW Mimetype guess for application/x-bittorrent is ['.torrent']
2022-11-26 14:15:06 DEBUG download ASW Filename %5BASW%5D%20Bocchi%20the%20Rock%21%20-%2008%20%5B1080p%20HEVC%5D%5B3C1AEDA2%5D.mkv.torrent extension matches to mime-type
2022-11-26 14:15:06 DEBUG download ASW Finishing download_entry() with filename %5BASW%5D%20Bocchi%20the%20Rock%21%20-%2008%20%5B1080p%20HEVC%5D%5B3C1AEDA2%5D.mkv.torrent
2022-11-26 14:15:06 DEBUG download ASW Successfully retrieved [ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC] from https://nyaa.si/download/1607177.torrent
2022-11-26 14:15:06 VERBOSE details ASW Summary - Accepted: 1 (Rejected: 4 Undecided: 72 Failed: 0)
2022-11-26 14:15:06 DEBUG modif_torrent ASW [ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC] seems to be a torrent
2022-11-26 14:15:06 DEBUG torrent_files ASW [ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC] files: ['[ASW] Bocchi the Rock! - 08 [1080p HEVC][3C1AEDA2].mkv']
2022-11-26 14:15:06 DEBUG torrent_size ASW [ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC] size: 250.55738925933838 MB
2022-11-26 14:15:06 DEBUG transmission ASW Connecting to http://127.0.0.1:9091/transmission/
2022-11-26 14:15:06 DEBUG transmission ASW Successfully connected to transmission.
2022-11-26 14:15:06 DEBUG utils.template ASW Error during rendering: (UndefinedError) 'tvdb_series_name' is undefined
2022-11-26 14:15:06 ERROR set ASW Could not set path for [ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC]: (UndefinedError) 'tvdb_series_name' is undefined
2022-11-26 14:15:06 DEBUG utils.template ASW Error during rendering: (UndefinedError) 'tvdb_series_name' is undefined
2022-11-26 14:15:06 ERROR set ASW Could not set content_filename for [ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC]: (UndefinedError) 'tvdb_series_name' is undefined
2022-11-26 14:15:06 CRITICAL task ASW BUG: Unhandled error in plugin transmission: Trying to render non string template or unrecognized template format, got None
Traceback (most recent call last):
File "/usr/lib/python3.11/threading.py", line 995, in _bootstrap
self._bootstrap_inner()
│ └ <function Thread._bootstrap_inner at 0x7fba456cd800>
└ <Thread(task_queue, started daemon 140437910513216)>
File "/usr/lib/python3.11/threading.py", line 1038, in _bootstrap_inner
self.run()
│ └ <function Thread.run at 0x7fba456cd4e0>
└ <Thread(task_queue, started daemon 140437910513216)>
File "/usr/lib/python3.11/threading.py", line 975, in run
self._target(*self._args, **self._kwargs)
│ │ │ │ │ └ {}
│ │ │ │ └ <Thread(task_queue, started daemon 140437910513216)>
│ │ │ └ ()
│ │ └ <Thread(task_queue, started daemon 140437910513216)>
│ └ <bound method TaskQueue.run of <flexget.task_queue.TaskQueue object at 0x7fba4172b3d0>>
└ <Thread(task_queue, started daemon 140437910513216)>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task_queue.py", line 47, in run
self.current_task.execute()
│ │ └ <function Task.execute at 0x7fba42dad300>
│ └ <flexget.task.Task object at 0x7fba3fd24750>
└ <flexget.task_queue.TaskQueue object at 0x7fba4172b3d0>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 87, in wrapper
return func(self, *args, **kw)
│ │ │ └ {}
│ │ └ ()
│ └ <flexget.task.Task object at 0x7fba3fd24750>
└ <function Task.execute at 0x7fba42dad260>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 727, in execute
self._execute()
│ └ <function Task._execute at 0x7fba42dad1c0>
└ <flexget.task.Task object at 0x7fba3fd24750>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 696, in _execute
self.__run_task_phase(phase)
│ └ 'output'
└ <flexget.task.Task object at 0x7fba3fd24750>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 514, in __run_task_phase
response = self.__run_plugin(plugin, phase, args)
│ │ │ └ (<flexget.task.Task object at 0x7fba3fd24750>, {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', ...
│ │ └ 'output'
│ └ <PluginInfo(name=transmission)>
└ <flexget.task.Task object at 0x7fba3fd24750>
> File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 547, in __run_plugin
result = method(*args, **kwargs)
│ │ └ {}
│ └ (<flexget.task.Task object at 0x7fba3fd24750>, {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', ...
└ <Event(name=plugin.transmission.output,func=on_task_output,priority=135)>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/event.py", line 20, in __call__
return self.func(*args, **kwargs)
│ │ │ └ {}
│ │ └ (<flexget.task.Task object at 0x7fba3fd24750>, {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', ...
│ └ <bound method PluginTransmission.on_task_output of <flexget.plugins.clients.transmission.PluginTransmission object at 0x7fba4...
└ <Event(name=plugin.transmission.output,func=on_task_output,priority=135)>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 380, in on_task_output
options = self._make_torrent_options_dict(config, entry)
│ │ │ └ <Entry(title=[ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC],state=accepted)>
│ │ └ {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', 'enabled': True, 'main_file_ratio': 0.9, 'actio...
│ └ <function PluginTransmission._make_torrent_options_dict at 0x7fba41c3a5c0>
└ <flexget.plugins.clients.transmission.PluginTransmission object at 0x7fba411b4450>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 741, in _make_torrent_options_dict
post['content_filename'] = entry.render(opt_dic['content_filename'])
│ │ │ └ {'path': None, 'main_file_only': False, 'main_file_ratio': 0.9, 'magnetization_timeout': 0, 'include_subs': False, 'content_f...
│ │ └ <function Entry.render at 0x7fba431f1940>
│ └ <Entry(title=[ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC],state=accepted)>
└ {'main_file_only': False, 'main_file_ratio': 0.9, 'magnetization_timeout': 0, 'include_subs': False}
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/entry.py", line 312, in render
raise ValueError(
ValueError: Trying to render non string template or unrecognized template format, got None
Traceback (most recent call last):
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 547, in __run_plugin
result = method(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/event.py", line 20, in __call__
return self.func(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 380, in on_task_output
options = self._make_torrent_options_dict(config, entry)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 741, in _make_torrent_options_dict
post['content_filename'] = entry.render(opt_dic['content_filename'])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/entry.py", line 312, in render
raise ValueError(
ValueError: Trying to render non string template or unrecognized template format, got None

View File

@ -0,0 +1,186 @@
2022-11-26 14:15:08 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[ASW] 4-nin wa Sorezore Uso wo Tsuku - 04 [1080p HEVC][0EB9158A].mkv,name=4-nin wa Sorezore Uso wo Tsuku,id=4,season=0,season_pack=None,episode=4,quality=1080p h265,proper=0,status=OK)> (in 0.32644699999995197 ms)
2022-11-26 14:15:08 DEBUG exists_series subsplease name [ASW] 4-nin wa Sorezore Uso wo Tsuku - 04 [1080p HEVC][0EB9158A].mkv is same series as 4-nin wa Sorezore Uso wo Tsuku
2022-11-26 14:15:08 DEBUG exists_series subsplease disk_parser.identifier = 4
2022-11-26 14:15:08 DEBUG exists_series subsplease disk_parser.quality = 1080p h265
2022-11-26 14:15:08 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 14:15:08 DEBUG exists_series subsplease series_parser.identifier = 7
2022-11-26 14:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 01 (1080p) [F51637F7].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 14:15:08 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 01 (1080p) [F51637F7].mkv,name=4-nin wa Sorezore Uso wo Tsuku,id=1,season=0,season_pack=None,episode=1,quality=1080p,proper=0,status=OK)> (in 0.3418740000000753 ms)
2022-11-26 14:15:08 DEBUG exists_series subsplease name [SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 01 (1080p) [F51637F7].mkv is same series as 4-nin wa Sorezore Uso wo Tsuku
2022-11-26 14:15:08 DEBUG exists_series subsplease disk_parser.identifier = 1
2022-11-26 14:15:08 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 14:15:08 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 14:15:08 DEBUG exists_series subsplease series_parser.identifier = 7
2022-11-26 14:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 02 (1080p) [A5D310BC].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 14:15:08 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 02 (1080p) [A5D310BC].mkv,name=4-nin wa Sorezore Uso wo Tsuku,id=2,season=0,season_pack=None,episode=2,quality=1080p,proper=0,status=OK)> (in 0.3275990000002338 ms)
2022-11-26 14:15:08 DEBUG exists_series subsplease name [SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 02 (1080p) [A5D310BC].mkv is same series as 4-nin wa Sorezore Uso wo Tsuku
2022-11-26 14:15:08 DEBUG exists_series subsplease disk_parser.identifier = 2
2022-11-26 14:15:08 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 14:15:08 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 14:15:08 DEBUG exists_series subsplease series_parser.identifier = 7
2022-11-26 14:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 05 (1080p) [E5F426C8].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 14:15:08 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 05 (1080p) [E5F426C8].mkv,name=4-nin wa Sorezore Uso wo Tsuku,id=5,season=0,season_pack=None,episode=5,quality=1080p,proper=0,status=OK)> (in 0.35733800000015137 ms)
2022-11-26 14:15:08 DEBUG exists_series subsplease name [SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 05 (1080p) [E5F426C8].mkv is same series as 4-nin wa Sorezore Uso wo Tsuku
2022-11-26 14:15:08 DEBUG exists_series subsplease disk_parser.identifier = 5
2022-11-26 14:15:08 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 14:15:08 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 14:15:08 DEBUG exists_series subsplease series_parser.identifier = 7
2022-11-26 14:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 06 (1080p) [84E1707D].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 14:15:08 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 06 (1080p) [84E1707D].mkv,name=4-nin wa Sorezore Uso wo Tsuku,id=6,season=0,season_pack=None,episode=6,quality=1080p,proper=0,status=OK)> (in 0.3431929999999639 ms)
2022-11-26 14:15:08 DEBUG exists_series subsplease name [SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 06 (1080p) [84E1707D].mkv is same series as 4-nin wa Sorezore Uso wo Tsuku
2022-11-26 14:15:08 DEBUG exists_series subsplease disk_parser.identifier = 6
2022-11-26 14:15:08 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 14:15:08 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 14:15:08 DEBUG exists_series subsplease series_parser.identifier = 7
2022-11-26 14:15:08 DEBUG parser_internal subsplease Parsing series: `[ASW] Bocchi the Rock! - 01 [1080p HEVC][EDC91675].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 14:15:08 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[ASW] Bocchi the Rock! - 01 [1080p HEVC][EDC91675].mkv,name=Bocchi the Rock!,id=1,season=0,season_pack=None,episode=1,quality=1080p h265,proper=0,status=OK)> (in 0.3766419999999826 ms)
2022-11-26 14:15:08 DEBUG exists_series subsplease name [ASW] Bocchi the Rock! - 01 [1080p HEVC][EDC91675].mkv is same series as Bocchi the Rock!
2022-11-26 14:15:08 DEBUG exists_series subsplease disk_parser.identifier = 1
2022-11-26 14:15:08 DEBUG exists_series subsplease disk_parser.quality = 1080p h265
2022-11-26 14:15:08 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 14:15:08 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 14:15:08 DEBUG parser_internal subsplease Parsing series: `[ASW] Bocchi the Rock! - 02 [1080p HEVC][2C494390].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 14:15:08 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[ASW] Bocchi the Rock! - 02 [1080p HEVC][2C494390].mkv,name=Bocchi the Rock!,id=2,season=0,season_pack=None,episode=2,quality=1080p h265,proper=0,status=OK)> (in 0.30973099999975773 ms)
2022-11-26 14:15:08 DEBUG exists_series subsplease name [ASW] Bocchi the Rock! - 02 [1080p HEVC][2C494390].mkv is same series as Bocchi the Rock!
2022-11-26 14:15:08 DEBUG exists_series subsplease disk_parser.identifier = 2
2022-11-26 14:15:08 DEBUG exists_series subsplease disk_parser.quality = 1080p h265
2022-11-26 14:15:08 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 14:15:08 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 14:15:08 DEBUG parser_internal subsplease Parsing series: `[ASW] Bocchi the Rock! - 05 [1080p HEVC][CDE54F81].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 14:15:08 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[ASW] Bocchi the Rock! - 05 [1080p HEVC][CDE54F81].mkv,name=Bocchi the Rock!,id=5,season=0,season_pack=None,episode=5,quality=1080p h265,proper=0,status=OK)> (in 0.2957129999998642 ms)
2022-11-26 14:15:08 DEBUG exists_series subsplease name [ASW] Bocchi the Rock! - 05 [1080p HEVC][CDE54F81].mkv is same series as Bocchi the Rock!
2022-11-26 14:15:08 DEBUG exists_series subsplease disk_parser.identifier = 5
2022-11-26 14:15:08 DEBUG exists_series subsplease disk_parser.quality = 1080p h265
2022-11-26 14:15:08 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 14:15:08 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 14:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Bocchi the Rock! - 03 (1080p) [1F17BE65].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 14:15:08 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 03 (1080p) [1F17BE65].mkv,name=Bocchi the Rock!,id=3,season=0,season_pack=None,episode=3,quality=1080p,proper=0,status=OK)> (in 0.33542000000030825 ms)
2022-11-26 14:15:08 DEBUG exists_series subsplease name [SubsPlease] Bocchi the Rock! - 03 (1080p) [1F17BE65].mkv is same series as Bocchi the Rock!
2022-11-26 14:15:08 DEBUG exists_series subsplease disk_parser.identifier = 3
2022-11-26 14:15:08 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 14:15:08 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 14:15:08 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 14:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Bocchi the Rock! - 04 (1080p) [10FE594B].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 14:15:08 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 04 (1080p) [10FE594B].mkv,name=Bocchi the Rock!,id=4,season=0,season_pack=None,episode=4,quality=1080p,proper=0,status=OK)> (in 0.42200700000005753 ms)
2022-11-26 14:15:08 DEBUG exists_series subsplease name [SubsPlease] Bocchi the Rock! - 04 (1080p) [10FE594B].mkv is same series as Bocchi the Rock!
2022-11-26 14:15:08 DEBUG exists_series subsplease disk_parser.identifier = 4
2022-11-26 14:15:08 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 14:15:08 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 14:15:08 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 14:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Bocchi the Rock! - 06 (1080p) [43102018].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 14:15:08 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 06 (1080p) [43102018].mkv,name=Bocchi the Rock!,id=6,season=0,season_pack=None,episode=6,quality=1080p,proper=0,status=OK)> (in 0.3535660000002494 ms)
2022-11-26 14:15:08 DEBUG exists_series subsplease name [SubsPlease] Bocchi the Rock! - 06 (1080p) [43102018].mkv is same series as Bocchi the Rock!
2022-11-26 14:15:08 DEBUG exists_series subsplease disk_parser.identifier = 6
2022-11-26 14:15:08 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 14:15:08 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 14:15:08 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 14:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Bocchi the Rock! - 07 (1080p) [D9ACC05A].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 14:15:08 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 07 (1080p) [D9ACC05A].mkv,name=Bocchi the Rock!,id=7,season=0,season_pack=None,episode=7,quality=1080p,proper=0,status=OK)> (in 0.3510829999999743 ms)
2022-11-26 14:15:08 DEBUG exists_series subsplease name [SubsPlease] Bocchi the Rock! - 07 (1080p) [D9ACC05A].mkv is same series as Bocchi the Rock!
2022-11-26 14:15:08 DEBUG exists_series subsplease disk_parser.identifier = 7
2022-11-26 14:15:08 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 14:15:08 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 14:15:08 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 14:15:08 DEBUG parser_internal subsplease Parsing series: `[ASW] 4-nin wa Sorezore Uso wo Tsuku - 03 [1080p HEVC][003636E5].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 14:15:08 DEBUG parser_internal subsplease Parsing series: `[ASW] 4-nin wa Sorezore Uso wo Tsuku - 04 [1080p HEVC][0EB9158A].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 14:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 01 (1080p) [F51637F7].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 14:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 02 (1080p) [A5D310BC].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 14:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 05 (1080p) [E5F426C8].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 14:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 06 (1080p) [84E1707D].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 14:15:08 DEBUG urlrewriter subsplease Checking 2 entries
2022-11-26 14:15:08 DEBUG download subsplease Accepting magnet url for [SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 07 (1080p) [2090CD83].mkv
2022-11-26 14:15:08 DEBUG download subsplease Accepting magnet url for [SubsPlease] Bocchi the Rock! - 08 (1080p) [D7E0A44D].mkv
2022-11-26 14:15:08 VERBOSE details subsplease Summary - Accepted: 2 (Rejected: 2 Undecided: 49 Failed: 0)
2022-11-26 14:15:08 DEBUG transmission subsplease Connecting to http://127.0.0.1:9091/transmission/
2022-11-26 14:15:08 DEBUG transmission subsplease Successfully connected to transmission.
2022-11-26 14:15:08 DEBUG utils.template subsplease Error during rendering: (UndefinedError) 'tvdb_series_name' is undefined
2022-11-26 14:15:08 ERROR set subsplease Could not set path for [SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 07 (1080p) [2090CD83].mkv: (UndefinedError) 'tvdb_series_name' is undefined
2022-11-26 14:15:08 DEBUG utils.template subsplease Error during rendering: (UndefinedError) 'tvdb_series_name' is undefined
2022-11-26 14:15:08 ERROR set subsplease Could not set content_filename for [SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 07 (1080p) [2090CD83].mkv: (UndefinedError) 'tvdb_series_name' is undefined
2022-11-26 14:15:08 CRITICAL task subsplease BUG: Unhandled error in plugin transmission: Trying to render non string template or unrecognized template format, got None
Traceback (most recent call last):
File "/usr/lib/python3.11/threading.py", line 995, in _bootstrap
self._bootstrap_inner()
│ └ <function Thread._bootstrap_inner at 0x7fba456cd800>
└ <Thread(task_queue, started daemon 140437910513216)>
File "/usr/lib/python3.11/threading.py", line 1038, in _bootstrap_inner
self.run()
│ └ <function Thread.run at 0x7fba456cd4e0>
└ <Thread(task_queue, started daemon 140437910513216)>
File "/usr/lib/python3.11/threading.py", line 975, in run
self._target(*self._args, **self._kwargs)
│ │ │ │ │ └ {}
│ │ │ │ └ <Thread(task_queue, started daemon 140437910513216)>
│ │ │ └ ()
│ │ └ <Thread(task_queue, started daemon 140437910513216)>
│ └ <bound method TaskQueue.run of <flexget.task_queue.TaskQueue object at 0x7fba4172b3d0>>
└ <Thread(task_queue, started daemon 140437910513216)>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task_queue.py", line 47, in run
self.current_task.execute()
│ │ └ <function Task.execute at 0x7fba42dad300>
│ └ <flexget.task.Task object at 0x7fba3fd25010>
└ <flexget.task_queue.TaskQueue object at 0x7fba4172b3d0>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 87, in wrapper
return func(self, *args, **kw)
│ │ │ └ {}
│ │ └ ()
│ └ <flexget.task.Task object at 0x7fba3fd25010>
└ <function Task.execute at 0x7fba42dad260>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 727, in execute
self._execute()
│ └ <function Task._execute at 0x7fba42dad1c0>
└ <flexget.task.Task object at 0x7fba3fd25010>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 696, in _execute
self.__run_task_phase(phase)
│ └ 'output'
└ <flexget.task.Task object at 0x7fba3fd25010>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 514, in __run_task_phase
response = self.__run_plugin(plugin, phase, args)
│ │ │ └ (<flexget.task.Task object at 0x7fba3fd25010>, {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', ...
│ │ └ 'output'
│ └ <PluginInfo(name=transmission)>
└ <flexget.task.Task object at 0x7fba3fd25010>
> File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 547, in __run_plugin
result = method(*args, **kwargs)
│ │ └ {}
│ └ (<flexget.task.Task object at 0x7fba3fd25010>, {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', ...
└ <Event(name=plugin.transmission.output,func=on_task_output,priority=135)>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/event.py", line 20, in __call__
return self.func(*args, **kwargs)
│ │ │ └ {}
│ │ └ (<flexget.task.Task object at 0x7fba3fd25010>, {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', ...
│ └ <bound method PluginTransmission.on_task_output of <flexget.plugins.clients.transmission.PluginTransmission object at 0x7fba4...
└ <Event(name=plugin.transmission.output,func=on_task_output,priority=135)>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 380, in on_task_output
options = self._make_torrent_options_dict(config, entry)
│ │ │ └ <Entry(title=[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 07 (1080p) [2090CD83].mkv,state=accepted)>
│ │ └ {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', 'enabled': True, 'main_file_ratio': 0.9, 'actio...
│ └ <function PluginTransmission._make_torrent_options_dict at 0x7fba41c3a5c0>
└ <flexget.plugins.clients.transmission.PluginTransmission object at 0x7fba411b4450>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 741, in _make_torrent_options_dict
post['content_filename'] = entry.render(opt_dic['content_filename'])
│ │ │ └ {'path': None, 'main_file_only': False, 'main_file_ratio': 0.9, 'magnetization_timeout': 0, 'include_subs': False, 'content_f...
│ │ └ <function Entry.render at 0x7fba431f1940>
│ └ <Entry(title=[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 07 (1080p) [2090CD83].mkv,state=accepted)>
└ {'main_file_only': False, 'main_file_ratio': 0.9, 'magnetization_timeout': 0, 'include_subs': False}
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/entry.py", line 312, in render
raise ValueError(
ValueError: Trying to render non string template or unrecognized template format, got None
Traceback (most recent call last):
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 547, in __run_plugin
result = method(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/event.py", line 20, in __call__
return self.func(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 380, in on_task_output
options = self._make_torrent_options_dict(config, entry)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 741, in _make_torrent_options_dict
post['content_filename'] = entry.render(opt_dic['content_filename'])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/entry.py", line 312, in render
raise ValueError(
ValueError: Trying to render non string template or unrecognized template format, got None

View File

@ -0,0 +1,186 @@
2022-11-26 15:15:05 DEBUG exists_series ASW name [SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 05 (1080p) [E5F426C8].mkv is same series as 4-nin wa Sorezore Uso wo Tsuku
2022-11-26 15:15:05 DEBUG exists_series ASW disk_parser.identifier = 5
2022-11-26 15:15:05 DEBUG exists_series ASW disk_parser.quality = 1080p
2022-11-26 15:15:05 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 15:15:05 DEBUG exists_series ASW series_parser.identifier = 7
2022-11-26 15:15:05 DEBUG parser_internal ASW Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 06 (1080p) [84E1707D].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 15:15:05 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 06 (1080p) [84E1707D].mkv,name=4-nin wa Sorezore Uso wo Tsuku,id=6,season=0,season_pack=None,episode=6,quality=1080p,proper=0,status=OK)> (in 0.32472399999994295 ms)
2022-11-26 15:15:05 DEBUG exists_series ASW name [SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 06 (1080p) [84E1707D].mkv is same series as 4-nin wa Sorezore Uso wo Tsuku
2022-11-26 15:15:05 DEBUG exists_series ASW disk_parser.identifier = 6
2022-11-26 15:15:05 DEBUG exists_series ASW disk_parser.quality = 1080p
2022-11-26 15:15:05 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 15:15:05 DEBUG exists_series ASW series_parser.identifier = 7
2022-11-26 15:15:05 DEBUG parser_internal ASW Parsing series: `[ASW] Bocchi the Rock! - 01 [1080p HEVC][EDC91675].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:15:05 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[ASW] Bocchi the Rock! - 01 [1080p HEVC][EDC91675].mkv,name=Bocchi the Rock!,id=1,season=0,season_pack=None,episode=1,quality=1080p h265,proper=0,status=OK)> (in 0.31935599999988185 ms)
2022-11-26 15:15:05 DEBUG exists_series ASW name [ASW] Bocchi the Rock! - 01 [1080p HEVC][EDC91675].mkv is same series as Bocchi the Rock!
2022-11-26 15:15:05 DEBUG exists_series ASW disk_parser.identifier = 1
2022-11-26 15:15:05 DEBUG exists_series ASW disk_parser.quality = 1080p h265
2022-11-26 15:15:05 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 15:15:05 DEBUG exists_series ASW series_parser.identifier = 8
2022-11-26 15:15:05 DEBUG parser_internal ASW Parsing series: `[ASW] Bocchi the Rock! - 02 [1080p HEVC][2C494390].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:15:05 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[ASW] Bocchi the Rock! - 02 [1080p HEVC][2C494390].mkv,name=Bocchi the Rock!,id=2,season=0,season_pack=None,episode=2,quality=1080p h265,proper=0,status=OK)> (in 0.3126779999997886 ms)
2022-11-26 15:15:05 DEBUG exists_series ASW name [ASW] Bocchi the Rock! - 02 [1080p HEVC][2C494390].mkv is same series as Bocchi the Rock!
2022-11-26 15:15:05 DEBUG exists_series ASW disk_parser.identifier = 2
2022-11-26 15:15:05 DEBUG exists_series ASW disk_parser.quality = 1080p h265
2022-11-26 15:15:05 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 15:15:05 DEBUG exists_series ASW series_parser.identifier = 8
2022-11-26 15:15:05 DEBUG parser_internal ASW Parsing series: `[ASW] Bocchi the Rock! - 05 [1080p HEVC][CDE54F81].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:15:05 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[ASW] Bocchi the Rock! - 05 [1080p HEVC][CDE54F81].mkv,name=Bocchi the Rock!,id=5,season=0,season_pack=None,episode=5,quality=1080p h265,proper=0,status=OK)> (in 0.37797599999978004 ms)
2022-11-26 15:15:05 DEBUG exists_series ASW name [ASW] Bocchi the Rock! - 05 [1080p HEVC][CDE54F81].mkv is same series as Bocchi the Rock!
2022-11-26 15:15:05 DEBUG exists_series ASW disk_parser.identifier = 5
2022-11-26 15:15:05 DEBUG exists_series ASW disk_parser.quality = 1080p h265
2022-11-26 15:15:05 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 15:15:05 DEBUG exists_series ASW series_parser.identifier = 8
2022-11-26 15:15:05 DEBUG parser_internal ASW Parsing series: `[SubsPlease] Bocchi the Rock! - 03 (1080p) [1F17BE65].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:15:05 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 03 (1080p) [1F17BE65].mkv,name=Bocchi the Rock!,id=3,season=0,season_pack=None,episode=3,quality=1080p,proper=0,status=OK)> (in 0.3477329999999057 ms)
2022-11-26 15:15:05 DEBUG exists_series ASW name [SubsPlease] Bocchi the Rock! - 03 (1080p) [1F17BE65].mkv is same series as Bocchi the Rock!
2022-11-26 15:15:05 DEBUG exists_series ASW disk_parser.identifier = 3
2022-11-26 15:15:05 DEBUG exists_series ASW disk_parser.quality = 1080p
2022-11-26 15:15:05 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 15:15:05 DEBUG exists_series ASW series_parser.identifier = 8
2022-11-26 15:15:05 DEBUG parser_internal ASW Parsing series: `[SubsPlease] Bocchi the Rock! - 04 (1080p) [10FE594B].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:15:05 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 04 (1080p) [10FE594B].mkv,name=Bocchi the Rock!,id=4,season=0,season_pack=None,episode=4,quality=1080p,proper=0,status=OK)> (in 0.34568600000017824 ms)
2022-11-26 15:15:05 DEBUG exists_series ASW name [SubsPlease] Bocchi the Rock! - 04 (1080p) [10FE594B].mkv is same series as Bocchi the Rock!
2022-11-26 15:15:05 DEBUG exists_series ASW disk_parser.identifier = 4
2022-11-26 15:15:05 DEBUG exists_series ASW disk_parser.quality = 1080p
2022-11-26 15:15:05 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 15:15:05 DEBUG exists_series ASW series_parser.identifier = 8
2022-11-26 15:15:05 DEBUG parser_internal ASW Parsing series: `[SubsPlease] Bocchi the Rock! - 06 (1080p) [43102018].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:15:05 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 06 (1080p) [43102018].mkv,name=Bocchi the Rock!,id=6,season=0,season_pack=None,episode=6,quality=1080p,proper=0,status=OK)> (in 0.3411530000003715 ms)
2022-11-26 15:15:05 DEBUG exists_series ASW name [SubsPlease] Bocchi the Rock! - 06 (1080p) [43102018].mkv is same series as Bocchi the Rock!
2022-11-26 15:15:05 DEBUG exists_series ASW disk_parser.identifier = 6
2022-11-26 15:15:05 DEBUG exists_series ASW disk_parser.quality = 1080p
2022-11-26 15:15:05 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 15:15:05 DEBUG exists_series ASW series_parser.identifier = 8
2022-11-26 15:15:05 DEBUG parser_internal ASW Parsing series: `[SubsPlease] Bocchi the Rock! - 07 (1080p) [D9ACC05A].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:15:05 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 07 (1080p) [D9ACC05A].mkv,name=Bocchi the Rock!,id=7,season=0,season_pack=None,episode=7,quality=1080p,proper=0,status=OK)> (in 0.3488140000000861 ms)
2022-11-26 15:15:05 DEBUG exists_series ASW name [SubsPlease] Bocchi the Rock! - 07 (1080p) [D9ACC05A].mkv is same series as Bocchi the Rock!
2022-11-26 15:15:05 DEBUG exists_series ASW disk_parser.identifier = 7
2022-11-26 15:15:05 DEBUG exists_series ASW disk_parser.quality = 1080p
2022-11-26 15:15:05 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 15:15:05 DEBUG exists_series ASW series_parser.identifier = 8
2022-11-26 15:15:05 DEBUG parser_internal ASW Parsing series: `[ASW] 4-nin wa Sorezore Uso wo Tsuku - 03 [1080p HEVC][003636E5].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:15:05 DEBUG parser_internal ASW Parsing series: `[ASW] 4-nin wa Sorezore Uso wo Tsuku - 04 [1080p HEVC][0EB9158A].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:15:05 DEBUG parser_internal ASW Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 01 (1080p) [F51637F7].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:15:05 DEBUG parser_internal ASW Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 02 (1080p) [A5D310BC].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:15:05 DEBUG parser_internal ASW Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 05 (1080p) [E5F426C8].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:15:05 DEBUG parser_internal ASW Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 06 (1080p) [84E1707D].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:15:05 DEBUG urlrewriter ASW Checking 2 entries
2022-11-26 15:15:05 INFO download ASW Downloading: [ASW] 4-nin wa Sorezore Uso wo Tsuku - 07 [1080p HEVC x265 10Bit][AAC]
2022-11-26 15:15:05 DEBUG download ASW Downloading url 'https://nyaa.si/download/1607300.torrent'
2022-11-26 15:15:05 DEBUG utils.requests ASW GETing URL https://nyaa.si/download/1607300.torrent with args () and kwargs {'auth': None, 'headers': {'User-Agent': 'FlexGet/3.5.5 (www.flexget.com)', 'Accept-Encoding': 'gzip, deflate, br', 'Accept': '*/*', 'Connection': 'keep-alive'}, 'allow_redirects': True, 'timeout': 30}
2022-11-26 15:15:06 DEBUG download ASW [ASW] 4-nin wa Sorezore Uso wo Tsuku - 07 [1080p HEVC x265 10Bit][AAC] field file set to: /tmp/tmpil4r3f9j/d63e519acdcc45764e281c2f80fe9b61
2022-11-26 15:15:06 DEBUG download ASW Found filename from headers: %5BASW%5D%204-nin%20wa%20Sorezore%20Uso%20wo%20Tsuku%20-%2007%20%5B1080p%20HEVC%5D%5B90841F23%5D.mkv.torrent
2022-11-26 15:15:06 DEBUG download ASW Mimetype guess for application/x-bittorrent is ['.torrent']
2022-11-26 15:15:06 DEBUG download ASW Filename %5BASW%5D%204-nin%20wa%20Sorezore%20Uso%20wo%20Tsuku%20-%2007%20%5B1080p%20HEVC%5D%5B90841F23%5D.mkv.torrent extension matches to mime-type
2022-11-26 15:15:06 DEBUG download ASW Finishing download_entry() with filename %5BASW%5D%204-nin%20wa%20Sorezore%20Uso%20wo%20Tsuku%20-%2007%20%5B1080p%20HEVC%5D%5B90841F23%5D.mkv.torrent
2022-11-26 15:15:06 DEBUG download ASW Successfully retrieved [ASW] 4-nin wa Sorezore Uso wo Tsuku - 07 [1080p HEVC x265 10Bit][AAC] from https://nyaa.si/download/1607300.torrent
2022-11-26 15:15:06 INFO download ASW Downloading: [ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC]
2022-11-26 15:15:06 DEBUG download ASW Downloading url 'https://nyaa.si/download/1607177.torrent'
2022-11-26 15:15:06 DEBUG utils.requests ASW GETing URL https://nyaa.si/download/1607177.torrent with args () and kwargs {'auth': None, 'headers': {'User-Agent': 'FlexGet/3.5.5 (www.flexget.com)', 'Accept-Encoding': 'gzip, deflate, br', 'Accept': '*/*', 'Connection': 'keep-alive'}, 'allow_redirects': True, 'timeout': 30}
2022-11-26 15:15:06 DEBUG download ASW [ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC] field file set to: /tmp/tmpmu7l3ru0/adba6c44d752d4c39d22bf73d161f48d
2022-11-26 15:15:06 DEBUG download ASW Found filename from headers: %5BASW%5D%20Bocchi%20the%20Rock%21%20-%2008%20%5B1080p%20HEVC%5D%5B3C1AEDA2%5D.mkv.torrent
2022-11-26 15:15:06 DEBUG download ASW Mimetype guess for application/x-bittorrent is ['.torrent']
2022-11-26 15:15:06 DEBUG download ASW Filename %5BASW%5D%20Bocchi%20the%20Rock%21%20-%2008%20%5B1080p%20HEVC%5D%5B3C1AEDA2%5D.mkv.torrent extension matches to mime-type
2022-11-26 15:15:06 DEBUG download ASW Finishing download_entry() with filename %5BASW%5D%20Bocchi%20the%20Rock%21%20-%2008%20%5B1080p%20HEVC%5D%5B3C1AEDA2%5D.mkv.torrent
2022-11-26 15:15:06 DEBUG download ASW Successfully retrieved [ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC] from https://nyaa.si/download/1607177.torrent
2022-11-26 15:15:06 VERBOSE details ASW Summary - Accepted: 2 (Rejected: 4 Undecided: 73 Failed: 0)
2022-11-26 15:15:06 DEBUG modif_torrent ASW [ASW] 4-nin wa Sorezore Uso wo Tsuku - 07 [1080p HEVC x265 10Bit][AAC] seems to be a torrent
2022-11-26 15:15:06 DEBUG modif_torrent ASW [ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC] seems to be a torrent
2022-11-26 15:15:06 DEBUG torrent_files ASW [ASW] 4-nin wa Sorezore Uso wo Tsuku - 07 [1080p HEVC x265 10Bit][AAC] files: ['[ASW] 4-nin wa Sorezore Uso wo Tsuku - 07 [1080p HEVC][90841F23].mkv']
2022-11-26 15:15:06 DEBUG torrent_files ASW [ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC] files: ['[ASW] Bocchi the Rock! - 08 [1080p HEVC][3C1AEDA2].mkv']
2022-11-26 15:15:06 DEBUG torrent_size ASW [ASW] 4-nin wa Sorezore Uso wo Tsuku - 07 [1080p HEVC x265 10Bit][AAC] size: 158.22903537750244 MB
2022-11-26 15:15:06 DEBUG torrent_size ASW [ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC] size: 250.55738925933838 MB
2022-11-26 15:15:06 DEBUG transmission ASW Connecting to http://127.0.0.1:9091/transmission/
2022-11-26 15:15:06 DEBUG transmission ASW Successfully connected to transmission.
2022-11-26 15:15:07 DEBUG utils.template ASW Error during rendering: (UndefinedError) 'tvdb_series_name' is undefined
2022-11-26 15:15:07 ERROR set ASW Could not set path for [ASW] 4-nin wa Sorezore Uso wo Tsuku - 07 [1080p HEVC x265 10Bit][AAC]: (UndefinedError) 'tvdb_series_name' is undefined
2022-11-26 15:15:07 DEBUG utils.template ASW Error during rendering: (UndefinedError) 'tvdb_series_name' is undefined
2022-11-26 15:15:07 ERROR set ASW Could not set content_filename for [ASW] 4-nin wa Sorezore Uso wo Tsuku - 07 [1080p HEVC x265 10Bit][AAC]: (UndefinedError) 'tvdb_series_name' is undefined
2022-11-26 15:15:07 CRITICAL task ASW BUG: Unhandled error in plugin transmission: Trying to render non string template or unrecognized template format, got None
Traceback (most recent call last):
File "/usr/lib/python3.11/threading.py", line 995, in _bootstrap
self._bootstrap_inner()
│ └ <function Thread._bootstrap_inner at 0x7fca4ffc9800>
└ <Thread(task_queue, started daemon 140506806728256)>
File "/usr/lib/python3.11/threading.py", line 1038, in _bootstrap_inner
self.run()
│ └ <function Thread.run at 0x7fca4ffc94e0>
└ <Thread(task_queue, started daemon 140506806728256)>
File "/usr/lib/python3.11/threading.py", line 975, in run
self._target(*self._args, **self._kwargs)
│ │ │ │ │ └ {}
│ │ │ │ └ <Thread(task_queue, started daemon 140506806728256)>
│ │ │ └ ()
│ │ └ <Thread(task_queue, started daemon 140506806728256)>
│ └ <bound method TaskQueue.run of <flexget.task_queue.TaskQueue object at 0x7fca4a94bbd0>>
└ <Thread(task_queue, started daemon 140506806728256)>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task_queue.py", line 47, in run
self.current_task.execute()
│ │ └ <function Task.execute at 0x7fca4d695300>
│ └ <flexget.task.Task object at 0x7fca4a588550>
└ <flexget.task_queue.TaskQueue object at 0x7fca4a94bbd0>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 87, in wrapper
return func(self, *args, **kw)
│ │ │ └ {}
│ │ └ ()
│ └ <flexget.task.Task object at 0x7fca4a588550>
└ <function Task.execute at 0x7fca4d695260>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 727, in execute
self._execute()
│ └ <function Task._execute at 0x7fca4d6951c0>
└ <flexget.task.Task object at 0x7fca4a588550>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 696, in _execute
self.__run_task_phase(phase)
│ └ 'output'
└ <flexget.task.Task object at 0x7fca4a588550>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 514, in __run_task_phase
response = self.__run_plugin(plugin, phase, args)
│ │ │ └ (<flexget.task.Task object at 0x7fca4a588550>, {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', ...
│ │ └ 'output'
│ └ <PluginInfo(name=transmission)>
└ <flexget.task.Task object at 0x7fca4a588550>
> File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 547, in __run_plugin
result = method(*args, **kwargs)
│ │ └ {}
│ └ (<flexget.task.Task object at 0x7fca4a588550>, {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', ...
└ <Event(name=plugin.transmission.output,func=on_task_output,priority=135)>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/event.py", line 20, in __call__
return self.func(*args, **kwargs)
│ │ │ └ {}
│ │ └ (<flexget.task.Task object at 0x7fca4a588550>, {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', ...
│ └ <bound method PluginTransmission.on_task_output of <flexget.plugins.clients.transmission.PluginTransmission object at 0x7fca4...
└ <Event(name=plugin.transmission.output,func=on_task_output,priority=135)>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 380, in on_task_output
options = self._make_torrent_options_dict(config, entry)
│ │ │ └ <Entry(title=[ASW] 4-nin wa Sorezore Uso wo Tsuku - 07 [1080p HEVC x265 10Bit][AAC],state=accepted)>
│ │ └ {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', 'enabled': True, 'main_file_ratio': 0.9, 'actio...
│ └ <function PluginTransmission._make_torrent_options_dict at 0x7fca4c49a5c0>
└ <flexget.plugins.clients.transmission.PluginTransmission object at 0x7fca4bc15290>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 741, in _make_torrent_options_dict
post['content_filename'] = entry.render(opt_dic['content_filename'])
│ │ │ └ {'path': None, 'main_file_only': False, 'main_file_ratio': 0.9, 'magnetization_timeout': 0, 'include_subs': False, 'content_f...
│ │ └ <function Entry.render at 0x7fca4dae9940>
│ └ <Entry(title=[ASW] 4-nin wa Sorezore Uso wo Tsuku - 07 [1080p HEVC x265 10Bit][AAC],state=accepted)>
└ {'main_file_only': False, 'main_file_ratio': 0.9, 'magnetization_timeout': 0, 'include_subs': False}
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/entry.py", line 312, in render
raise ValueError(
ValueError: Trying to render non string template or unrecognized template format, got None
Traceback (most recent call last):
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 547, in __run_plugin
result = method(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/event.py", line 20, in __call__
return self.func(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 380, in on_task_output
options = self._make_torrent_options_dict(config, entry)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 741, in _make_torrent_options_dict
post['content_filename'] = entry.render(opt_dic['content_filename'])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/entry.py", line 312, in render
raise ValueError(
ValueError: Trying to render non string template or unrecognized template format, got None

View File

@ -0,0 +1,186 @@
2022-11-26 15:15:08 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[ASW] 4-nin wa Sorezore Uso wo Tsuku - 04 [1080p HEVC][0EB9158A].mkv,name=4-nin wa Sorezore Uso wo Tsuku,id=4,season=0,season_pack=None,episode=4,quality=1080p h265,proper=0,status=OK)> (in 0.34865699999997446 ms)
2022-11-26 15:15:08 DEBUG exists_series subsplease name [ASW] 4-nin wa Sorezore Uso wo Tsuku - 04 [1080p HEVC][0EB9158A].mkv is same series as 4-nin wa Sorezore Uso wo Tsuku
2022-11-26 15:15:08 DEBUG exists_series subsplease disk_parser.identifier = 4
2022-11-26 15:15:08 DEBUG exists_series subsplease disk_parser.quality = 1080p h265
2022-11-26 15:15:08 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 15:15:08 DEBUG exists_series subsplease series_parser.identifier = 7
2022-11-26 15:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 01 (1080p) [F51637F7].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 15:15:08 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 01 (1080p) [F51637F7].mkv,name=4-nin wa Sorezore Uso wo Tsuku,id=1,season=0,season_pack=None,episode=1,quality=1080p,proper=0,status=OK)> (in 0.34102600000007754 ms)
2022-11-26 15:15:08 DEBUG exists_series subsplease name [SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 01 (1080p) [F51637F7].mkv is same series as 4-nin wa Sorezore Uso wo Tsuku
2022-11-26 15:15:08 DEBUG exists_series subsplease disk_parser.identifier = 1
2022-11-26 15:15:08 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 15:15:08 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 15:15:08 DEBUG exists_series subsplease series_parser.identifier = 7
2022-11-26 15:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 02 (1080p) [A5D310BC].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 15:15:08 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 02 (1080p) [A5D310BC].mkv,name=4-nin wa Sorezore Uso wo Tsuku,id=2,season=0,season_pack=None,episode=2,quality=1080p,proper=0,status=OK)> (in 0.3302700000000769 ms)
2022-11-26 15:15:08 DEBUG exists_series subsplease name [SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 02 (1080p) [A5D310BC].mkv is same series as 4-nin wa Sorezore Uso wo Tsuku
2022-11-26 15:15:08 DEBUG exists_series subsplease disk_parser.identifier = 2
2022-11-26 15:15:08 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 15:15:08 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 15:15:08 DEBUG exists_series subsplease series_parser.identifier = 7
2022-11-26 15:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 05 (1080p) [E5F426C8].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 15:15:08 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 05 (1080p) [E5F426C8].mkv,name=4-nin wa Sorezore Uso wo Tsuku,id=5,season=0,season_pack=None,episode=5,quality=1080p,proper=0,status=OK)> (in 0.35952499999991616 ms)
2022-11-26 15:15:08 DEBUG exists_series subsplease name [SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 05 (1080p) [E5F426C8].mkv is same series as 4-nin wa Sorezore Uso wo Tsuku
2022-11-26 15:15:08 DEBUG exists_series subsplease disk_parser.identifier = 5
2022-11-26 15:15:08 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 15:15:08 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 15:15:08 DEBUG exists_series subsplease series_parser.identifier = 7
2022-11-26 15:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 06 (1080p) [84E1707D].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 15:15:08 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 06 (1080p) [84E1707D].mkv,name=4-nin wa Sorezore Uso wo Tsuku,id=6,season=0,season_pack=None,episode=6,quality=1080p,proper=0,status=OK)> (in 0.34878199999965886 ms)
2022-11-26 15:15:08 DEBUG exists_series subsplease name [SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 06 (1080p) [84E1707D].mkv is same series as 4-nin wa Sorezore Uso wo Tsuku
2022-11-26 15:15:08 DEBUG exists_series subsplease disk_parser.identifier = 6
2022-11-26 15:15:08 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 15:15:08 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 15:15:08 DEBUG exists_series subsplease series_parser.identifier = 7
2022-11-26 15:15:08 DEBUG parser_internal subsplease Parsing series: `[ASW] Bocchi the Rock! - 01 [1080p HEVC][EDC91675].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:15:08 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[ASW] Bocchi the Rock! - 01 [1080p HEVC][EDC91675].mkv,name=Bocchi the Rock!,id=1,season=0,season_pack=None,episode=1,quality=1080p h265,proper=0,status=OK)> (in 0.3485779999996552 ms)
2022-11-26 15:15:08 DEBUG exists_series subsplease name [ASW] Bocchi the Rock! - 01 [1080p HEVC][EDC91675].mkv is same series as Bocchi the Rock!
2022-11-26 15:15:08 DEBUG exists_series subsplease disk_parser.identifier = 1
2022-11-26 15:15:08 DEBUG exists_series subsplease disk_parser.quality = 1080p h265
2022-11-26 15:15:08 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 15:15:08 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 15:15:08 DEBUG parser_internal subsplease Parsing series: `[ASW] Bocchi the Rock! - 02 [1080p HEVC][2C494390].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:15:08 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[ASW] Bocchi the Rock! - 02 [1080p HEVC][2C494390].mkv,name=Bocchi the Rock!,id=2,season=0,season_pack=None,episode=2,quality=1080p h265,proper=0,status=OK)> (in 0.3454780000002877 ms)
2022-11-26 15:15:08 DEBUG exists_series subsplease name [ASW] Bocchi the Rock! - 02 [1080p HEVC][2C494390].mkv is same series as Bocchi the Rock!
2022-11-26 15:15:08 DEBUG exists_series subsplease disk_parser.identifier = 2
2022-11-26 15:15:08 DEBUG exists_series subsplease disk_parser.quality = 1080p h265
2022-11-26 15:15:08 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 15:15:08 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 15:15:08 DEBUG parser_internal subsplease Parsing series: `[ASW] Bocchi the Rock! - 05 [1080p HEVC][CDE54F81].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:15:08 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[ASW] Bocchi the Rock! - 05 [1080p HEVC][CDE54F81].mkv,name=Bocchi the Rock!,id=5,season=0,season_pack=None,episode=5,quality=1080p h265,proper=0,status=OK)> (in 0.29734700000005887 ms)
2022-11-26 15:15:08 DEBUG exists_series subsplease name [ASW] Bocchi the Rock! - 05 [1080p HEVC][CDE54F81].mkv is same series as Bocchi the Rock!
2022-11-26 15:15:08 DEBUG exists_series subsplease disk_parser.identifier = 5
2022-11-26 15:15:08 DEBUG exists_series subsplease disk_parser.quality = 1080p h265
2022-11-26 15:15:08 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 15:15:08 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 15:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Bocchi the Rock! - 03 (1080p) [1F17BE65].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:15:08 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 03 (1080p) [1F17BE65].mkv,name=Bocchi the Rock!,id=3,season=0,season_pack=None,episode=3,quality=1080p,proper=0,status=OK)> (in 0.3872579999999459 ms)
2022-11-26 15:15:08 DEBUG exists_series subsplease name [SubsPlease] Bocchi the Rock! - 03 (1080p) [1F17BE65].mkv is same series as Bocchi the Rock!
2022-11-26 15:15:08 DEBUG exists_series subsplease disk_parser.identifier = 3
2022-11-26 15:15:08 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 15:15:08 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 15:15:08 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 15:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Bocchi the Rock! - 04 (1080p) [10FE594B].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:15:08 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 04 (1080p) [10FE594B].mkv,name=Bocchi the Rock!,id=4,season=0,season_pack=None,episode=4,quality=1080p,proper=0,status=OK)> (in 0.3294389999997094 ms)
2022-11-26 15:15:08 DEBUG exists_series subsplease name [SubsPlease] Bocchi the Rock! - 04 (1080p) [10FE594B].mkv is same series as Bocchi the Rock!
2022-11-26 15:15:08 DEBUG exists_series subsplease disk_parser.identifier = 4
2022-11-26 15:15:08 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 15:15:08 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 15:15:08 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 15:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Bocchi the Rock! - 06 (1080p) [43102018].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:15:08 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 06 (1080p) [43102018].mkv,name=Bocchi the Rock!,id=6,season=0,season_pack=None,episode=6,quality=1080p,proper=0,status=OK)> (in 0.3247319999997167 ms)
2022-11-26 15:15:08 DEBUG exists_series subsplease name [SubsPlease] Bocchi the Rock! - 06 (1080p) [43102018].mkv is same series as Bocchi the Rock!
2022-11-26 15:15:08 DEBUG exists_series subsplease disk_parser.identifier = 6
2022-11-26 15:15:08 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 15:15:08 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 15:15:08 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 15:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Bocchi the Rock! - 07 (1080p) [D9ACC05A].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:15:08 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 07 (1080p) [D9ACC05A].mkv,name=Bocchi the Rock!,id=7,season=0,season_pack=None,episode=7,quality=1080p,proper=0,status=OK)> (in 0.3244780000000169 ms)
2022-11-26 15:15:08 DEBUG exists_series subsplease name [SubsPlease] Bocchi the Rock! - 07 (1080p) [D9ACC05A].mkv is same series as Bocchi the Rock!
2022-11-26 15:15:08 DEBUG exists_series subsplease disk_parser.identifier = 7
2022-11-26 15:15:08 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 15:15:08 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 15:15:08 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 15:15:08 DEBUG parser_internal subsplease Parsing series: `[ASW] 4-nin wa Sorezore Uso wo Tsuku - 03 [1080p HEVC][003636E5].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:15:08 DEBUG parser_internal subsplease Parsing series: `[ASW] 4-nin wa Sorezore Uso wo Tsuku - 04 [1080p HEVC][0EB9158A].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 01 (1080p) [F51637F7].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 02 (1080p) [A5D310BC].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 05 (1080p) [E5F426C8].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:15:08 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 06 (1080p) [84E1707D].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:15:08 DEBUG urlrewriter subsplease Checking 2 entries
2022-11-26 15:15:08 DEBUG download subsplease Accepting magnet url for [SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 07 (1080p) [2090CD83].mkv
2022-11-26 15:15:08 DEBUG download subsplease Accepting magnet url for [SubsPlease] Bocchi the Rock! - 08 (1080p) [D7E0A44D].mkv
2022-11-26 15:15:08 VERBOSE details subsplease Summary - Accepted: 2 (Rejected: 2 Undecided: 49 Failed: 0)
2022-11-26 15:15:08 DEBUG transmission subsplease Connecting to http://127.0.0.1:9091/transmission/
2022-11-26 15:15:08 DEBUG transmission subsplease Successfully connected to transmission.
2022-11-26 15:15:09 DEBUG utils.template subsplease Error during rendering: (UndefinedError) 'tvdb_series_name' is undefined
2022-11-26 15:15:09 ERROR set subsplease Could not set path for [SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 07 (1080p) [2090CD83].mkv: (UndefinedError) 'tvdb_series_name' is undefined
2022-11-26 15:15:09 DEBUG utils.template subsplease Error during rendering: (UndefinedError) 'tvdb_series_name' is undefined
2022-11-26 15:15:09 ERROR set subsplease Could not set content_filename for [SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 07 (1080p) [2090CD83].mkv: (UndefinedError) 'tvdb_series_name' is undefined
2022-11-26 15:15:09 CRITICAL task subsplease BUG: Unhandled error in plugin transmission: Trying to render non string template or unrecognized template format, got None
Traceback (most recent call last):
File "/usr/lib/python3.11/threading.py", line 995, in _bootstrap
self._bootstrap_inner()
│ └ <function Thread._bootstrap_inner at 0x7fca4ffc9800>
└ <Thread(task_queue, started daemon 140506806728256)>
File "/usr/lib/python3.11/threading.py", line 1038, in _bootstrap_inner
self.run()
│ └ <function Thread.run at 0x7fca4ffc94e0>
└ <Thread(task_queue, started daemon 140506806728256)>
File "/usr/lib/python3.11/threading.py", line 975, in run
self._target(*self._args, **self._kwargs)
│ │ │ │ │ └ {}
│ │ │ │ └ <Thread(task_queue, started daemon 140506806728256)>
│ │ │ └ ()
│ │ └ <Thread(task_queue, started daemon 140506806728256)>
│ └ <bound method TaskQueue.run of <flexget.task_queue.TaskQueue object at 0x7fca4a94bbd0>>
└ <Thread(task_queue, started daemon 140506806728256)>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task_queue.py", line 47, in run
self.current_task.execute()
│ │ └ <function Task.execute at 0x7fca4d695300>
│ └ <flexget.task.Task object at 0x7fca4a588e10>
└ <flexget.task_queue.TaskQueue object at 0x7fca4a94bbd0>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 87, in wrapper
return func(self, *args, **kw)
│ │ │ └ {}
│ │ └ ()
│ └ <flexget.task.Task object at 0x7fca4a588e10>
└ <function Task.execute at 0x7fca4d695260>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 727, in execute
self._execute()
│ └ <function Task._execute at 0x7fca4d6951c0>
└ <flexget.task.Task object at 0x7fca4a588e10>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 696, in _execute
self.__run_task_phase(phase)
│ └ 'output'
└ <flexget.task.Task object at 0x7fca4a588e10>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 514, in __run_task_phase
response = self.__run_plugin(plugin, phase, args)
│ │ │ └ (<flexget.task.Task object at 0x7fca4a588e10>, {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', ...
│ │ └ 'output'
│ └ <PluginInfo(name=transmission)>
└ <flexget.task.Task object at 0x7fca4a588e10>
> File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 547, in __run_plugin
result = method(*args, **kwargs)
│ │ └ {}
│ └ (<flexget.task.Task object at 0x7fca4a588e10>, {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', ...
└ <Event(name=plugin.transmission.output,func=on_task_output,priority=135)>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/event.py", line 20, in __call__
return self.func(*args, **kwargs)
│ │ │ └ {}
│ │ └ (<flexget.task.Task object at 0x7fca4a588e10>, {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', ...
│ └ <bound method PluginTransmission.on_task_output of <flexget.plugins.clients.transmission.PluginTransmission object at 0x7fca4...
└ <Event(name=plugin.transmission.output,func=on_task_output,priority=135)>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 380, in on_task_output
options = self._make_torrent_options_dict(config, entry)
│ │ │ └ <Entry(title=[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 07 (1080p) [2090CD83].mkv,state=accepted)>
│ │ └ {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', 'enabled': True, 'main_file_ratio': 0.9, 'actio...
│ └ <function PluginTransmission._make_torrent_options_dict at 0x7fca4c49a5c0>
└ <flexget.plugins.clients.transmission.PluginTransmission object at 0x7fca4bc15290>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 741, in _make_torrent_options_dict
post['content_filename'] = entry.render(opt_dic['content_filename'])
│ │ │ └ {'path': None, 'main_file_only': False, 'main_file_ratio': 0.9, 'magnetization_timeout': 0, 'include_subs': False, 'content_f...
│ │ └ <function Entry.render at 0x7fca4dae9940>
│ └ <Entry(title=[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 07 (1080p) [2090CD83].mkv,state=accepted)>
└ {'main_file_only': False, 'main_file_ratio': 0.9, 'magnetization_timeout': 0, 'include_subs': False}
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/entry.py", line 312, in render
raise ValueError(
ValueError: Trying to render non string template or unrecognized template format, got None
Traceback (most recent call last):
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 547, in __run_plugin
result = method(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/event.py", line 20, in __call__
return self.func(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 380, in on_task_output
options = self._make_torrent_options_dict(config, entry)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 741, in _make_torrent_options_dict
post['content_filename'] = entry.render(opt_dic['content_filename'])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/entry.py", line 312, in render
raise ValueError(
ValueError: Trying to render non string template or unrecognized template format, got None

View File

@ -0,0 +1,186 @@
2022-11-26 15:16:01 DEBUG parser_internal ASW Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 06 (1080p) [84E1707D].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 15:16:01 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 06 (1080p) [84E1707D].mkv,name=4-nin wa Sorezore Uso wo Tsuku,id=6,season=0,season_pack=None,episode=6,quality=1080p,proper=0,status=OK)> (in 0.36842199999975733 ms)
2022-11-26 15:16:01 DEBUG exists_series ASW name [SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 06 (1080p) [84E1707D].mkv is same series as 4-nin wa Sorezore Uso wo Tsuku
2022-11-26 15:16:01 DEBUG exists_series ASW disk_parser.identifier = 6
2022-11-26 15:16:01 DEBUG exists_series ASW disk_parser.quality = 1080p
2022-11-26 15:16:01 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 15:16:01 DEBUG exists_series ASW series_parser.identifier = 7
2022-11-26 15:16:01 DEBUG parser_internal ASW Parsing series: `[ASW] Bocchi the Rock! - 01 [1080p HEVC][EDC91675].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 15:16:01 DEBUG parser_internal ASW Parsing series: `[ASW] Bocchi the Rock! - 02 [1080p HEVC][2C494390].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 15:16:01 DEBUG parser_internal ASW Parsing series: `[ASW] Bocchi the Rock! - 05 [1080p HEVC][CDE54F81].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 15:16:01 DEBUG parser_internal ASW Parsing series: `[SubsPlease] Bocchi the Rock! - 03 (1080p) [1F17BE65].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 15:16:01 DEBUG parser_internal ASW Parsing series: `[SubsPlease] Bocchi the Rock! - 04 (1080p) [10FE594B].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 15:16:01 DEBUG parser_internal ASW Parsing series: `[SubsPlease] Bocchi the Rock! - 06 (1080p) [43102018].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 15:16:01 DEBUG parser_internal ASW Parsing series: `[SubsPlease] Bocchi the Rock! - 07 (1080p) [D9ACC05A].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 15:16:01 DEBUG parser_internal ASW Parsing series: `[ASW] 4-nin wa Sorezore Uso wo Tsuku - 03 [1080p HEVC][003636E5].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:16:01 DEBUG parser_internal ASW Parsing series: `[ASW] 4-nin wa Sorezore Uso wo Tsuku - 04 [1080p HEVC][0EB9158A].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:16:01 DEBUG parser_internal ASW Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 01 (1080p) [F51637F7].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:16:01 DEBUG parser_internal ASW Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 02 (1080p) [A5D310BC].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:16:01 DEBUG parser_internal ASW Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 05 (1080p) [E5F426C8].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:16:01 DEBUG parser_internal ASW Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 06 (1080p) [84E1707D].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:16:01 DEBUG parser_internal ASW Parsing series: `[ASW] Bocchi the Rock! - 01 [1080p HEVC][EDC91675].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:16:01 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[ASW] Bocchi the Rock! - 01 [1080p HEVC][EDC91675].mkv,name=Bocchi the Rock!,id=1,season=0,season_pack=None,episode=1,quality=1080p h265,proper=0,status=OK)> (in 0.32080700000003404 ms)
2022-11-26 15:16:01 DEBUG exists_series ASW name [ASW] Bocchi the Rock! - 01 [1080p HEVC][EDC91675].mkv is same series as Bocchi the Rock!
2022-11-26 15:16:01 DEBUG exists_series ASW disk_parser.identifier = 1
2022-11-26 15:16:01 DEBUG exists_series ASW disk_parser.quality = 1080p h265
2022-11-26 15:16:01 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 15:16:01 DEBUG exists_series ASW series_parser.identifier = 8
2022-11-26 15:16:01 DEBUG parser_internal ASW Parsing series: `[ASW] Bocchi the Rock! - 02 [1080p HEVC][2C494390].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:16:01 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[ASW] Bocchi the Rock! - 02 [1080p HEVC][2C494390].mkv,name=Bocchi the Rock!,id=2,season=0,season_pack=None,episode=2,quality=1080p h265,proper=0,status=OK)> (in 0.30983999999989464 ms)
2022-11-26 15:16:01 DEBUG exists_series ASW name [ASW] Bocchi the Rock! - 02 [1080p HEVC][2C494390].mkv is same series as Bocchi the Rock!
2022-11-26 15:16:01 DEBUG exists_series ASW disk_parser.identifier = 2
2022-11-26 15:16:01 DEBUG exists_series ASW disk_parser.quality = 1080p h265
2022-11-26 15:16:01 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 15:16:01 DEBUG exists_series ASW series_parser.identifier = 8
2022-11-26 15:16:01 DEBUG parser_internal ASW Parsing series: `[ASW] Bocchi the Rock! - 05 [1080p HEVC][CDE54F81].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:16:01 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[ASW] Bocchi the Rock! - 05 [1080p HEVC][CDE54F81].mkv,name=Bocchi the Rock!,id=5,season=0,season_pack=None,episode=5,quality=1080p h265,proper=0,status=OK)> (in 0.3699120000000278 ms)
2022-11-26 15:16:01 DEBUG exists_series ASW name [ASW] Bocchi the Rock! - 05 [1080p HEVC][CDE54F81].mkv is same series as Bocchi the Rock!
2022-11-26 15:16:01 DEBUG exists_series ASW disk_parser.identifier = 5
2022-11-26 15:16:01 DEBUG exists_series ASW disk_parser.quality = 1080p h265
2022-11-26 15:16:01 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 15:16:01 DEBUG exists_series ASW series_parser.identifier = 8
2022-11-26 15:16:01 DEBUG parser_internal ASW Parsing series: `[SubsPlease] Bocchi the Rock! - 03 (1080p) [1F17BE65].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:16:01 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 03 (1080p) [1F17BE65].mkv,name=Bocchi the Rock!,id=3,season=0,season_pack=None,episode=3,quality=1080p,proper=0,status=OK)> (in 0.33848300000016707 ms)
2022-11-26 15:16:01 DEBUG exists_series ASW name [SubsPlease] Bocchi the Rock! - 03 (1080p) [1F17BE65].mkv is same series as Bocchi the Rock!
2022-11-26 15:16:01 DEBUG exists_series ASW disk_parser.identifier = 3
2022-11-26 15:16:01 DEBUG exists_series ASW disk_parser.quality = 1080p
2022-11-26 15:16:01 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 15:16:01 DEBUG exists_series ASW series_parser.identifier = 8
2022-11-26 15:16:01 DEBUG parser_internal ASW Parsing series: `[SubsPlease] Bocchi the Rock! - 04 (1080p) [10FE594B].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:16:01 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 04 (1080p) [10FE594B].mkv,name=Bocchi the Rock!,id=4,season=0,season_pack=None,episode=4,quality=1080p,proper=0,status=OK)> (in 0.4142960000002027 ms)
2022-11-26 15:16:01 DEBUG exists_series ASW name [SubsPlease] Bocchi the Rock! - 04 (1080p) [10FE594B].mkv is same series as Bocchi the Rock!
2022-11-26 15:16:01 DEBUG exists_series ASW disk_parser.identifier = 4
2022-11-26 15:16:01 DEBUG exists_series ASW disk_parser.quality = 1080p
2022-11-26 15:16:01 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 15:16:01 DEBUG exists_series ASW series_parser.identifier = 8
2022-11-26 15:16:01 DEBUG parser_internal ASW Parsing series: `[SubsPlease] Bocchi the Rock! - 06 (1080p) [43102018].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:16:01 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 06 (1080p) [43102018].mkv,name=Bocchi the Rock!,id=6,season=0,season_pack=None,episode=6,quality=1080p,proper=0,status=OK)> (in 0.35347699999999094 ms)
2022-11-26 15:16:01 DEBUG exists_series ASW name [SubsPlease] Bocchi the Rock! - 06 (1080p) [43102018].mkv is same series as Bocchi the Rock!
2022-11-26 15:16:01 DEBUG exists_series ASW disk_parser.identifier = 6
2022-11-26 15:16:01 DEBUG exists_series ASW disk_parser.quality = 1080p
2022-11-26 15:16:01 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 15:16:01 DEBUG exists_series ASW series_parser.identifier = 8
2022-11-26 15:16:01 DEBUG parser_internal ASW Parsing series: `[SubsPlease] Bocchi the Rock! - 07 (1080p) [D9ACC05A].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:16:01 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 07 (1080p) [D9ACC05A].mkv,name=Bocchi the Rock!,id=7,season=0,season_pack=None,episode=7,quality=1080p,proper=0,status=OK)> (in 0.37023899999999443 ms)
2022-11-26 15:16:01 DEBUG exists_series ASW name [SubsPlease] Bocchi the Rock! - 07 (1080p) [D9ACC05A].mkv is same series as Bocchi the Rock!
2022-11-26 15:16:01 DEBUG exists_series ASW disk_parser.identifier = 7
2022-11-26 15:16:01 DEBUG exists_series ASW disk_parser.quality = 1080p
2022-11-26 15:16:01 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 15:16:01 DEBUG exists_series ASW series_parser.identifier = 8
2022-11-26 15:16:01 DEBUG urlrewriter ASW Checking 2 entries
2022-11-26 15:16:01 INFO download ASW Downloading: [ASW] 4-nin wa Sorezore Uso wo Tsuku - 07 [1080p HEVC x265 10Bit][AAC]
2022-11-26 15:16:01 DEBUG download ASW Downloading url 'https://nyaa.si/download/1607300.torrent'
2022-11-26 15:16:01 DEBUG utils.requests ASW GETing URL https://nyaa.si/download/1607300.torrent with args () and kwargs {'auth': None, 'headers': {'User-Agent': 'FlexGet/3.5.5 (www.flexget.com)', 'Accept-Encoding': 'gzip, deflate, br', 'Accept': '*/*', 'Connection': 'keep-alive'}, 'allow_redirects': True, 'timeout': 30}
2022-11-26 15:16:01 DEBUG download ASW [ASW] 4-nin wa Sorezore Uso wo Tsuku - 07 [1080p HEVC x265 10Bit][AAC] field file set to: /tmp/tmpmks7t1p_/d63e519acdcc45764e281c2f80fe9b61
2022-11-26 15:16:01 DEBUG download ASW Found filename from headers: %5BASW%5D%204-nin%20wa%20Sorezore%20Uso%20wo%20Tsuku%20-%2007%20%5B1080p%20HEVC%5D%5B90841F23%5D.mkv.torrent
2022-11-26 15:16:01 DEBUG download ASW Mimetype guess for application/x-bittorrent is ['.torrent']
2022-11-26 15:16:01 DEBUG download ASW Filename %5BASW%5D%204-nin%20wa%20Sorezore%20Uso%20wo%20Tsuku%20-%2007%20%5B1080p%20HEVC%5D%5B90841F23%5D.mkv.torrent extension matches to mime-type
2022-11-26 15:16:01 DEBUG download ASW Finishing download_entry() with filename %5BASW%5D%204-nin%20wa%20Sorezore%20Uso%20wo%20Tsuku%20-%2007%20%5B1080p%20HEVC%5D%5B90841F23%5D.mkv.torrent
2022-11-26 15:16:01 DEBUG download ASW Successfully retrieved [ASW] 4-nin wa Sorezore Uso wo Tsuku - 07 [1080p HEVC x265 10Bit][AAC] from https://nyaa.si/download/1607300.torrent
2022-11-26 15:16:01 INFO download ASW Downloading: [ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC]
2022-11-26 15:16:01 DEBUG download ASW Downloading url 'https://nyaa.si/download/1607177.torrent'
2022-11-26 15:16:01 DEBUG utils.requests ASW GETing URL https://nyaa.si/download/1607177.torrent with args () and kwargs {'auth': None, 'headers': {'User-Agent': 'FlexGet/3.5.5 (www.flexget.com)', 'Accept-Encoding': 'gzip, deflate, br', 'Accept': '*/*', 'Connection': 'keep-alive'}, 'allow_redirects': True, 'timeout': 30}
2022-11-26 15:16:01 DEBUG download ASW [ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC] field file set to: /tmp/tmpipwtfxw_/adba6c44d752d4c39d22bf73d161f48d
2022-11-26 15:16:01 DEBUG download ASW Found filename from headers: %5BASW%5D%20Bocchi%20the%20Rock%21%20-%2008%20%5B1080p%20HEVC%5D%5B3C1AEDA2%5D.mkv.torrent
2022-11-26 15:16:01 DEBUG download ASW Mimetype guess for application/x-bittorrent is ['.torrent']
2022-11-26 15:16:01 DEBUG download ASW Filename %5BASW%5D%20Bocchi%20the%20Rock%21%20-%2008%20%5B1080p%20HEVC%5D%5B3C1AEDA2%5D.mkv.torrent extension matches to mime-type
2022-11-26 15:16:01 DEBUG download ASW Finishing download_entry() with filename %5BASW%5D%20Bocchi%20the%20Rock%21%20-%2008%20%5B1080p%20HEVC%5D%5B3C1AEDA2%5D.mkv.torrent
2022-11-26 15:16:01 DEBUG download ASW Successfully retrieved [ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC] from https://nyaa.si/download/1607177.torrent
2022-11-26 15:16:01 VERBOSE details ASW Summary - Accepted: 2 (Rejected: 4 Undecided: 73 Failed: 0)
2022-11-26 15:16:01 DEBUG modif_torrent ASW [ASW] 4-nin wa Sorezore Uso wo Tsuku - 07 [1080p HEVC x265 10Bit][AAC] seems to be a torrent
2022-11-26 15:16:01 DEBUG modif_torrent ASW [ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC] seems to be a torrent
2022-11-26 15:16:01 DEBUG torrent_files ASW [ASW] 4-nin wa Sorezore Uso wo Tsuku - 07 [1080p HEVC x265 10Bit][AAC] files: ['[ASW] 4-nin wa Sorezore Uso wo Tsuku - 07 [1080p HEVC][90841F23].mkv']
2022-11-26 15:16:01 DEBUG torrent_files ASW [ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC] files: ['[ASW] Bocchi the Rock! - 08 [1080p HEVC][3C1AEDA2].mkv']
2022-11-26 15:16:01 DEBUG torrent_size ASW [ASW] 4-nin wa Sorezore Uso wo Tsuku - 07 [1080p HEVC x265 10Bit][AAC] size: 158.22903537750244 MB
2022-11-26 15:16:01 DEBUG torrent_size ASW [ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC] size: 250.55738925933838 MB
2022-11-26 15:16:01 DEBUG transmission ASW Connecting to http://127.0.0.1:9091/transmission/
2022-11-26 15:16:01 DEBUG transmission ASW Successfully connected to transmission.
2022-11-26 15:16:02 DEBUG utils.template ASW Error during rendering: (UndefinedError) 'tvdb_series_name' is undefined
2022-11-26 15:16:02 ERROR set ASW Could not set content_filename for [ASW] 4-nin wa Sorezore Uso wo Tsuku - 07 [1080p HEVC x265 10Bit][AAC]: (UndefinedError) 'tvdb_series_name' is undefined
2022-11-26 15:16:02 CRITICAL task ASW BUG: Unhandled error in plugin transmission: Trying to render non string template or unrecognized template format, got None
Traceback (most recent call last):
File "/usr/lib/python3.11/threading.py", line 995, in _bootstrap
self._bootstrap_inner()
│ └ <function Thread._bootstrap_inner at 0x7f58456c9440>
└ <Thread(task_queue, started daemon 140017003718208)>
File "/usr/lib/python3.11/threading.py", line 1038, in _bootstrap_inner
self.run()
│ └ <function Thread.run at 0x7f58456c9120>
└ <Thread(task_queue, started daemon 140017003718208)>
File "/usr/lib/python3.11/threading.py", line 975, in run
self._target(*self._args, **self._kwargs)
│ │ │ │ │ └ {}
│ │ │ │ └ <Thread(task_queue, started daemon 140017003718208)>
│ │ │ └ ()
│ │ └ <Thread(task_queue, started daemon 140017003718208)>
│ └ <bound method TaskQueue.run of <flexget.task_queue.TaskQueue object at 0x7f58400ee4d0>>
└ <Thread(task_queue, started daemon 140017003718208)>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task_queue.py", line 47, in run
self.current_task.execute()
│ │ └ <function Task.execute at 0x7f5842da8f40>
│ └ <flexget.task.Task object at 0x7f583fd17010>
└ <flexget.task_queue.TaskQueue object at 0x7f58400ee4d0>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 87, in wrapper
return func(self, *args, **kw)
│ │ │ └ {}
│ │ └ ()
│ └ <flexget.task.Task object at 0x7f583fd17010>
└ <function Task.execute at 0x7f5842da8ea0>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 727, in execute
self._execute()
│ └ <function Task._execute at 0x7f5842da8e00>
└ <flexget.task.Task object at 0x7f583fd17010>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 696, in _execute
self.__run_task_phase(phase)
│ └ 'output'
└ <flexget.task.Task object at 0x7f583fd17010>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 514, in __run_task_phase
response = self.__run_plugin(plugin, phase, args)
│ │ │ └ (<flexget.task.Task object at 0x7f583fd17010>, {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', ...
│ │ └ 'output'
│ └ <PluginInfo(name=transmission)>
└ <flexget.task.Task object at 0x7f583fd17010>
> File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 547, in __run_plugin
result = method(*args, **kwargs)
│ │ └ {}
│ └ (<flexget.task.Task object at 0x7f583fd17010>, {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', ...
└ <Event(name=plugin.transmission.output,func=on_task_output,priority=135)>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/event.py", line 20, in __call__
return self.func(*args, **kwargs)
│ │ │ └ {}
│ │ └ (<flexget.task.Task object at 0x7f583fd17010>, {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', ...
│ └ <bound method PluginTransmission.on_task_output of <flexget.plugins.clients.transmission.PluginTransmission object at 0x7f584...
└ <Event(name=plugin.transmission.output,func=on_task_output,priority=135)>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 380, in on_task_output
options = self._make_torrent_options_dict(config, entry)
│ │ │ └ <Entry(title=[ASW] 4-nin wa Sorezore Uso wo Tsuku - 07 [1080p HEVC x265 10Bit][AAC],state=accepted)>
│ │ └ {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', 'enabled': True, 'main_file_ratio': 0.9, 'actio...
│ └ <function PluginTransmission._make_torrent_options_dict at 0x7f5841c3e160>
└ <flexget.plugins.clients.transmission.PluginTransmission object at 0x7f58411b65d0>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 741, in _make_torrent_options_dict
post['content_filename'] = entry.render(opt_dic['content_filename'])
│ │ │ └ {'path': '/mnt/EntertainmentDrive/anime/4-nin wa Sorezore Uso wo Tsuku', 'main_file_only': False, 'main_file_ratio': 0.9, 'ma...
│ │ └ <function Entry.render at 0x7f58431f1580>
│ └ <Entry(title=[ASW] 4-nin wa Sorezore Uso wo Tsuku - 07 [1080p HEVC x265 10Bit][AAC],state=accepted)>
└ {'main_file_only': False, 'main_file_ratio': 0.9, 'magnetization_timeout': 0, 'include_subs': False}
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/entry.py", line 312, in render
raise ValueError(
ValueError: Trying to render non string template or unrecognized template format, got None
Traceback (most recent call last):
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 547, in __run_plugin
result = method(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/event.py", line 20, in __call__
return self.func(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 380, in on_task_output
options = self._make_torrent_options_dict(config, entry)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 741, in _make_torrent_options_dict
post['content_filename'] = entry.render(opt_dic['content_filename'])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/entry.py", line 312, in render
raise ValueError(
ValueError: Trying to render non string template or unrecognized template format, got None

View File

@ -0,0 +1,186 @@
2022-11-26 15:16:03 DEBUG exists_series subsplease series_parser.identifier = 7
2022-11-26 15:16:03 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 01 (1080p) [F51637F7].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 15:16:03 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 01 (1080p) [F51637F7].mkv,name=4-nin wa Sorezore Uso wo Tsuku,id=1,season=0,season_pack=None,episode=1,quality=1080p,proper=0,status=OK)> (in 0.3400569999998382 ms)
2022-11-26 15:16:03 DEBUG exists_series subsplease name [SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 01 (1080p) [F51637F7].mkv is same series as 4-nin wa Sorezore Uso wo Tsuku
2022-11-26 15:16:03 DEBUG exists_series subsplease disk_parser.identifier = 1
2022-11-26 15:16:03 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 15:16:03 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 15:16:03 DEBUG exists_series subsplease series_parser.identifier = 7
2022-11-26 15:16:03 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 02 (1080p) [A5D310BC].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 15:16:03 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 02 (1080p) [A5D310BC].mkv,name=4-nin wa Sorezore Uso wo Tsuku,id=2,season=0,season_pack=None,episode=2,quality=1080p,proper=0,status=OK)> (in 0.362739999999917 ms)
2022-11-26 15:16:03 DEBUG exists_series subsplease name [SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 02 (1080p) [A5D310BC].mkv is same series as 4-nin wa Sorezore Uso wo Tsuku
2022-11-26 15:16:03 DEBUG exists_series subsplease disk_parser.identifier = 2
2022-11-26 15:16:03 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 15:16:03 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 15:16:03 DEBUG exists_series subsplease series_parser.identifier = 7
2022-11-26 15:16:03 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 05 (1080p) [E5F426C8].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 15:16:03 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 05 (1080p) [E5F426C8].mkv,name=4-nin wa Sorezore Uso wo Tsuku,id=5,season=0,season_pack=None,episode=5,quality=1080p,proper=0,status=OK)> (in 0.34954099999984223 ms)
2022-11-26 15:16:03 DEBUG exists_series subsplease name [SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 05 (1080p) [E5F426C8].mkv is same series as 4-nin wa Sorezore Uso wo Tsuku
2022-11-26 15:16:03 DEBUG exists_series subsplease disk_parser.identifier = 5
2022-11-26 15:16:03 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 15:16:03 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 15:16:03 DEBUG exists_series subsplease series_parser.identifier = 7
2022-11-26 15:16:03 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 06 (1080p) [84E1707D].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 15:16:03 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 06 (1080p) [84E1707D].mkv,name=4-nin wa Sorezore Uso wo Tsuku,id=6,season=0,season_pack=None,episode=6,quality=1080p,proper=0,status=OK)> (in 0.3462559999998227 ms)
2022-11-26 15:16:03 DEBUG exists_series subsplease name [SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 06 (1080p) [84E1707D].mkv is same series as 4-nin wa Sorezore Uso wo Tsuku
2022-11-26 15:16:03 DEBUG exists_series subsplease disk_parser.identifier = 6
2022-11-26 15:16:03 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 15:16:03 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 15:16:03 DEBUG exists_series subsplease series_parser.identifier = 7
2022-11-26 15:16:03 DEBUG parser_internal subsplease Parsing series: `[ASW] Bocchi the Rock! - 01 [1080p HEVC][EDC91675].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 15:16:03 DEBUG parser_internal subsplease Parsing series: `[ASW] Bocchi the Rock! - 02 [1080p HEVC][2C494390].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 15:16:03 DEBUG parser_internal subsplease Parsing series: `[ASW] Bocchi the Rock! - 05 [1080p HEVC][CDE54F81].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 15:16:03 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Bocchi the Rock! - 03 (1080p) [1F17BE65].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 15:16:03 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Bocchi the Rock! - 04 (1080p) [10FE594B].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 15:16:03 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Bocchi the Rock! - 06 (1080p) [43102018].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 15:16:03 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Bocchi the Rock! - 07 (1080p) [D9ACC05A].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 15:16:03 DEBUG parser_internal subsplease Parsing series: `[ASW] 4-nin wa Sorezore Uso wo Tsuku - 03 [1080p HEVC][003636E5].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:16:03 DEBUG parser_internal subsplease Parsing series: `[ASW] 4-nin wa Sorezore Uso wo Tsuku - 04 [1080p HEVC][0EB9158A].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:16:03 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 01 (1080p) [F51637F7].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:16:03 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 02 (1080p) [A5D310BC].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:16:03 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 05 (1080p) [E5F426C8].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:16:03 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 06 (1080p) [84E1707D].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:16:03 DEBUG parser_internal subsplease Parsing series: `[ASW] Bocchi the Rock! - 01 [1080p HEVC][EDC91675].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:16:03 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[ASW] Bocchi the Rock! - 01 [1080p HEVC][EDC91675].mkv,name=Bocchi the Rock!,id=1,season=0,season_pack=None,episode=1,quality=1080p h265,proper=0,status=OK)> (in 0.35177400000030445 ms)
2022-11-26 15:16:03 DEBUG exists_series subsplease name [ASW] Bocchi the Rock! - 01 [1080p HEVC][EDC91675].mkv is same series as Bocchi the Rock!
2022-11-26 15:16:03 DEBUG exists_series subsplease disk_parser.identifier = 1
2022-11-26 15:16:03 DEBUG exists_series subsplease disk_parser.quality = 1080p h265
2022-11-26 15:16:03 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 15:16:03 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 15:16:03 DEBUG parser_internal subsplease Parsing series: `[ASW] Bocchi the Rock! - 02 [1080p HEVC][2C494390].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:16:03 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[ASW] Bocchi the Rock! - 02 [1080p HEVC][2C494390].mkv,name=Bocchi the Rock!,id=2,season=0,season_pack=None,episode=2,quality=1080p h265,proper=0,status=OK)> (in 0.3455410000001713 ms)
2022-11-26 15:16:03 DEBUG exists_series subsplease name [ASW] Bocchi the Rock! - 02 [1080p HEVC][2C494390].mkv is same series as Bocchi the Rock!
2022-11-26 15:16:03 DEBUG exists_series subsplease disk_parser.identifier = 2
2022-11-26 15:16:03 DEBUG exists_series subsplease disk_parser.quality = 1080p h265
2022-11-26 15:16:03 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 15:16:03 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 15:16:03 DEBUG parser_internal subsplease Parsing series: `[ASW] Bocchi the Rock! - 05 [1080p HEVC][CDE54F81].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:16:03 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[ASW] Bocchi the Rock! - 05 [1080p HEVC][CDE54F81].mkv,name=Bocchi the Rock!,id=5,season=0,season_pack=None,episode=5,quality=1080p h265,proper=0,status=OK)> (in 0.35744099999979184 ms)
2022-11-26 15:16:03 DEBUG exists_series subsplease name [ASW] Bocchi the Rock! - 05 [1080p HEVC][CDE54F81].mkv is same series as Bocchi the Rock!
2022-11-26 15:16:03 DEBUG exists_series subsplease disk_parser.identifier = 5
2022-11-26 15:16:03 DEBUG exists_series subsplease disk_parser.quality = 1080p h265
2022-11-26 15:16:03 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 15:16:03 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 15:16:03 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Bocchi the Rock! - 03 (1080p) [1F17BE65].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:16:03 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 03 (1080p) [1F17BE65].mkv,name=Bocchi the Rock!,id=3,season=0,season_pack=None,episode=3,quality=1080p,proper=0,status=OK)> (in 0.46256999999982895 ms)
2022-11-26 15:16:03 DEBUG exists_series subsplease name [SubsPlease] Bocchi the Rock! - 03 (1080p) [1F17BE65].mkv is same series as Bocchi the Rock!
2022-11-26 15:16:03 DEBUG exists_series subsplease disk_parser.identifier = 3
2022-11-26 15:16:03 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 15:16:03 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 15:16:03 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 15:16:03 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Bocchi the Rock! - 04 (1080p) [10FE594B].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:16:03 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 04 (1080p) [10FE594B].mkv,name=Bocchi the Rock!,id=4,season=0,season_pack=None,episode=4,quality=1080p,proper=0,status=OK)> (in 0.3487029999997837 ms)
2022-11-26 15:16:03 DEBUG exists_series subsplease name [SubsPlease] Bocchi the Rock! - 04 (1080p) [10FE594B].mkv is same series as Bocchi the Rock!
2022-11-26 15:16:03 DEBUG exists_series subsplease disk_parser.identifier = 4
2022-11-26 15:16:03 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 15:16:03 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 15:16:03 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 15:16:03 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Bocchi the Rock! - 06 (1080p) [43102018].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:16:03 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 06 (1080p) [43102018].mkv,name=Bocchi the Rock!,id=6,season=0,season_pack=None,episode=6,quality=1080p,proper=0,status=OK)> (in 0.37679699999992877 ms)
2022-11-26 15:16:03 DEBUG exists_series subsplease name [SubsPlease] Bocchi the Rock! - 06 (1080p) [43102018].mkv is same series as Bocchi the Rock!
2022-11-26 15:16:03 DEBUG exists_series subsplease disk_parser.identifier = 6
2022-11-26 15:16:03 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 15:16:03 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 15:16:03 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 15:16:03 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Bocchi the Rock! - 07 (1080p) [D9ACC05A].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:16:03 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 07 (1080p) [D9ACC05A].mkv,name=Bocchi the Rock!,id=7,season=0,season_pack=None,episode=7,quality=1080p,proper=0,status=OK)> (in 0.3607809999999212 ms)
2022-11-26 15:16:03 DEBUG exists_series subsplease name [SubsPlease] Bocchi the Rock! - 07 (1080p) [D9ACC05A].mkv is same series as Bocchi the Rock!
2022-11-26 15:16:03 DEBUG exists_series subsplease disk_parser.identifier = 7
2022-11-26 15:16:03 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 15:16:03 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 15:16:03 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 15:16:03 DEBUG urlrewriter subsplease Checking 2 entries
2022-11-26 15:16:03 DEBUG download subsplease Accepting magnet url for [SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 07 (1080p) [2090CD83].mkv
2022-11-26 15:16:03 DEBUG download subsplease Accepting magnet url for [SubsPlease] Bocchi the Rock! - 08 (1080p) [D7E0A44D].mkv
2022-11-26 15:16:03 VERBOSE details subsplease Summary - Accepted: 2 (Rejected: 2 Undecided: 49 Failed: 0)
2022-11-26 15:16:03 DEBUG transmission subsplease Connecting to http://127.0.0.1:9091/transmission/
2022-11-26 15:16:03 DEBUG transmission subsplease Successfully connected to transmission.
2022-11-26 15:16:04 DEBUG utils.template subsplease Error during rendering: (UndefinedError) 'tvdb_series_name' is undefined
2022-11-26 15:16:04 ERROR set subsplease Could not set content_filename for [SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 07 (1080p) [2090CD83].mkv: (UndefinedError) 'tvdb_series_name' is undefined
2022-11-26 15:16:04 CRITICAL task subsplease BUG: Unhandled error in plugin transmission: Trying to render non string template or unrecognized template format, got None
Traceback (most recent call last):
File "/usr/lib/python3.11/threading.py", line 995, in _bootstrap
self._bootstrap_inner()
│ └ <function Thread._bootstrap_inner at 0x7f58456c9440>
└ <Thread(task_queue, started daemon 140017003718208)>
File "/usr/lib/python3.11/threading.py", line 1038, in _bootstrap_inner
self.run()
│ └ <function Thread.run at 0x7f58456c9120>
└ <Thread(task_queue, started daemon 140017003718208)>
File "/usr/lib/python3.11/threading.py", line 975, in run
self._target(*self._args, **self._kwargs)
│ │ │ │ │ └ {}
│ │ │ │ └ <Thread(task_queue, started daemon 140017003718208)>
│ │ │ └ ()
│ │ └ <Thread(task_queue, started daemon 140017003718208)>
│ └ <bound method TaskQueue.run of <flexget.task_queue.TaskQueue object at 0x7f58400ee4d0>>
└ <Thread(task_queue, started daemon 140017003718208)>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task_queue.py", line 47, in run
self.current_task.execute()
│ │ └ <function Task.execute at 0x7f5842da8f40>
│ └ <flexget.task.Task object at 0x7f583fd178d0>
└ <flexget.task_queue.TaskQueue object at 0x7f58400ee4d0>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 87, in wrapper
return func(self, *args, **kw)
│ │ │ └ {}
│ │ └ ()
│ └ <flexget.task.Task object at 0x7f583fd178d0>
└ <function Task.execute at 0x7f5842da8ea0>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 727, in execute
self._execute()
│ └ <function Task._execute at 0x7f5842da8e00>
└ <flexget.task.Task object at 0x7f583fd178d0>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 696, in _execute
self.__run_task_phase(phase)
│ └ 'output'
└ <flexget.task.Task object at 0x7f583fd178d0>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 514, in __run_task_phase
response = self.__run_plugin(plugin, phase, args)
│ │ │ └ (<flexget.task.Task object at 0x7f583fd178d0>, {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', ...
│ │ └ 'output'
│ └ <PluginInfo(name=transmission)>
└ <flexget.task.Task object at 0x7f583fd178d0>
> File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 547, in __run_plugin
result = method(*args, **kwargs)
│ │ └ {}
│ └ (<flexget.task.Task object at 0x7f583fd178d0>, {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', ...
└ <Event(name=plugin.transmission.output,func=on_task_output,priority=135)>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/event.py", line 20, in __call__
return self.func(*args, **kwargs)
│ │ │ └ {}
│ │ └ (<flexget.task.Task object at 0x7f583fd178d0>, {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', ...
│ └ <bound method PluginTransmission.on_task_output of <flexget.plugins.clients.transmission.PluginTransmission object at 0x7f584...
└ <Event(name=plugin.transmission.output,func=on_task_output,priority=135)>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 380, in on_task_output
options = self._make_torrent_options_dict(config, entry)
│ │ │ └ <Entry(title=[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 07 (1080p) [2090CD83].mkv,state=accepted)>
│ │ └ {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', 'enabled': True, 'main_file_ratio': 0.9, 'actio...
│ └ <function PluginTransmission._make_torrent_options_dict at 0x7f5841c3e160>
└ <flexget.plugins.clients.transmission.PluginTransmission object at 0x7f58411b65d0>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 741, in _make_torrent_options_dict
post['content_filename'] = entry.render(opt_dic['content_filename'])
│ │ │ └ {'path': '/mnt/EntertainmentDrive/anime/4-nin wa Sorezore Uso wo Tsuku', 'main_file_only': False, 'main_file_ratio': 0.9, 'ma...
│ │ └ <function Entry.render at 0x7f58431f1580>
│ └ <Entry(title=[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 07 (1080p) [2090CD83].mkv,state=accepted)>
└ {'main_file_only': False, 'main_file_ratio': 0.9, 'magnetization_timeout': 0, 'include_subs': False}
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/entry.py", line 312, in render
raise ValueError(
ValueError: Trying to render non string template or unrecognized template format, got None
Traceback (most recent call last):
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 547, in __run_plugin
result = method(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/event.py", line 20, in __call__
return self.func(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 380, in on_task_output
options = self._make_torrent_options_dict(config, entry)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 741, in _make_torrent_options_dict
post['content_filename'] = entry.render(opt_dic['content_filename'])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/entry.py", line 312, in render
raise ValueError(
ValueError: Trying to render non string template or unrecognized template format, got None

View File

@ -0,0 +1,186 @@
2022-11-26 15:20:07 DEBUG parser_internal ASW Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 05 (1080p) [E5F426C8].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 15:20:07 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 05 (1080p) [E5F426C8].mkv,name=4-nin wa Sorezore Uso wo Tsuku,id=5,season=0,season_pack=None,episode=5,quality=1080p,proper=0,status=OK)> (in 0.31978800000009855 ms)
2022-11-26 15:20:07 DEBUG exists_series ASW name [SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 05 (1080p) [E5F426C8].mkv is same series as 4-nin wa Sorezore Uso wo Tsuku
2022-11-26 15:20:07 DEBUG exists_series ASW disk_parser.identifier = 5
2022-11-26 15:20:07 DEBUG exists_series ASW disk_parser.quality = 1080p
2022-11-26 15:20:07 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 15:20:07 DEBUG exists_series ASW series_parser.identifier = 7
2022-11-26 15:20:07 DEBUG parser_internal ASW Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 06 (1080p) [84E1707D].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 15:20:07 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 06 (1080p) [84E1707D].mkv,name=4-nin wa Sorezore Uso wo Tsuku,id=6,season=0,season_pack=None,episode=6,quality=1080p,proper=0,status=OK)> (in 0.39367000000023467 ms)
2022-11-26 15:20:07 DEBUG exists_series ASW name [SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 06 (1080p) [84E1707D].mkv is same series as 4-nin wa Sorezore Uso wo Tsuku
2022-11-26 15:20:07 DEBUG exists_series ASW disk_parser.identifier = 6
2022-11-26 15:20:07 DEBUG exists_series ASW disk_parser.quality = 1080p
2022-11-26 15:20:07 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 15:20:07 DEBUG exists_series ASW series_parser.identifier = 7
2022-11-26 15:20:07 DEBUG parser_internal ASW Parsing series: `[ASW] Bocchi the Rock! - 01 [1080p HEVC][EDC91675].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:20:07 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[ASW] Bocchi the Rock! - 01 [1080p HEVC][EDC91675].mkv,name=Bocchi the Rock!,id=1,season=0,season_pack=None,episode=1,quality=1080p h265,proper=0,status=OK)> (in 0.36588599999998195 ms)
2022-11-26 15:20:07 DEBUG exists_series ASW name [ASW] Bocchi the Rock! - 01 [1080p HEVC][EDC91675].mkv is same series as Bocchi the Rock!
2022-11-26 15:20:07 DEBUG exists_series ASW disk_parser.identifier = 1
2022-11-26 15:20:07 DEBUG exists_series ASW disk_parser.quality = 1080p h265
2022-11-26 15:20:07 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 15:20:07 DEBUG exists_series ASW series_parser.identifier = 8
2022-11-26 15:20:07 DEBUG parser_internal ASW Parsing series: `[ASW] Bocchi the Rock! - 02 [1080p HEVC][2C494390].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:20:07 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[ASW] Bocchi the Rock! - 02 [1080p HEVC][2C494390].mkv,name=Bocchi the Rock!,id=2,season=0,season_pack=None,episode=2,quality=1080p h265,proper=0,status=OK)> (in 0.31539200000008094 ms)
2022-11-26 15:20:07 DEBUG exists_series ASW name [ASW] Bocchi the Rock! - 02 [1080p HEVC][2C494390].mkv is same series as Bocchi the Rock!
2022-11-26 15:20:07 DEBUG exists_series ASW disk_parser.identifier = 2
2022-11-26 15:20:07 DEBUG exists_series ASW disk_parser.quality = 1080p h265
2022-11-26 15:20:07 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 15:20:07 DEBUG exists_series ASW series_parser.identifier = 8
2022-11-26 15:20:07 DEBUG parser_internal ASW Parsing series: `[ASW] Bocchi the Rock! - 05 [1080p HEVC][CDE54F81].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:20:07 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[ASW] Bocchi the Rock! - 05 [1080p HEVC][CDE54F81].mkv,name=Bocchi the Rock!,id=5,season=0,season_pack=None,episode=5,quality=1080p h265,proper=0,status=OK)> (in 0.33834599999993387 ms)
2022-11-26 15:20:07 DEBUG exists_series ASW name [ASW] Bocchi the Rock! - 05 [1080p HEVC][CDE54F81].mkv is same series as Bocchi the Rock!
2022-11-26 15:20:07 DEBUG exists_series ASW disk_parser.identifier = 5
2022-11-26 15:20:07 DEBUG exists_series ASW disk_parser.quality = 1080p h265
2022-11-26 15:20:07 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 15:20:07 DEBUG exists_series ASW series_parser.identifier = 8
2022-11-26 15:20:07 DEBUG parser_internal ASW Parsing series: `[SubsPlease] Bocchi the Rock! - 03 (1080p) [1F17BE65].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:20:07 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 03 (1080p) [1F17BE65].mkv,name=Bocchi the Rock!,id=3,season=0,season_pack=None,episode=3,quality=1080p,proper=0,status=OK)> (in 0.4588860000001027 ms)
2022-11-26 15:20:07 DEBUG exists_series ASW name [SubsPlease] Bocchi the Rock! - 03 (1080p) [1F17BE65].mkv is same series as Bocchi the Rock!
2022-11-26 15:20:07 DEBUG exists_series ASW disk_parser.identifier = 3
2022-11-26 15:20:07 DEBUG exists_series ASW disk_parser.quality = 1080p
2022-11-26 15:20:07 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 15:20:07 DEBUG exists_series ASW series_parser.identifier = 8
2022-11-26 15:20:07 DEBUG parser_internal ASW Parsing series: `[SubsPlease] Bocchi the Rock! - 04 (1080p) [10FE594B].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:20:07 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 04 (1080p) [10FE594B].mkv,name=Bocchi the Rock!,id=4,season=0,season_pack=None,episode=4,quality=1080p,proper=0,status=OK)> (in 0.39724899999971086 ms)
2022-11-26 15:20:07 DEBUG exists_series ASW name [SubsPlease] Bocchi the Rock! - 04 (1080p) [10FE594B].mkv is same series as Bocchi the Rock!
2022-11-26 15:20:07 DEBUG exists_series ASW disk_parser.identifier = 4
2022-11-26 15:20:07 DEBUG exists_series ASW disk_parser.quality = 1080p
2022-11-26 15:20:07 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 15:20:07 DEBUG exists_series ASW series_parser.identifier = 8
2022-11-26 15:20:07 DEBUG parser_internal ASW Parsing series: `[SubsPlease] Bocchi the Rock! - 06 (1080p) [43102018].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:20:07 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 06 (1080p) [43102018].mkv,name=Bocchi the Rock!,id=6,season=0,season_pack=None,episode=6,quality=1080p,proper=0,status=OK)> (in 0.3546560000002863 ms)
2022-11-26 15:20:07 DEBUG exists_series ASW name [SubsPlease] Bocchi the Rock! - 06 (1080p) [43102018].mkv is same series as Bocchi the Rock!
2022-11-26 15:20:07 DEBUG exists_series ASW disk_parser.identifier = 6
2022-11-26 15:20:07 DEBUG exists_series ASW disk_parser.quality = 1080p
2022-11-26 15:20:07 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 15:20:07 DEBUG exists_series ASW series_parser.identifier = 8
2022-11-26 15:20:07 DEBUG parser_internal ASW Parsing series: `[SubsPlease] Bocchi the Rock! - 07 (1080p) [D9ACC05A].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:20:07 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 07 (1080p) [D9ACC05A].mkv,name=Bocchi the Rock!,id=7,season=0,season_pack=None,episode=7,quality=1080p,proper=0,status=OK)> (in 0.35887400000023106 ms)
2022-11-26 15:20:07 DEBUG exists_series ASW name [SubsPlease] Bocchi the Rock! - 07 (1080p) [D9ACC05A].mkv is same series as Bocchi the Rock!
2022-11-26 15:20:07 DEBUG exists_series ASW disk_parser.identifier = 7
2022-11-26 15:20:07 DEBUG exists_series ASW disk_parser.quality = 1080p
2022-11-26 15:20:07 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 15:20:07 DEBUG exists_series ASW series_parser.identifier = 8
2022-11-26 15:20:07 DEBUG parser_internal ASW Parsing series: `[ASW] 4-nin wa Sorezore Uso wo Tsuku - 03 [1080p HEVC][003636E5].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:20:07 DEBUG parser_internal ASW Parsing series: `[ASW] 4-nin wa Sorezore Uso wo Tsuku - 04 [1080p HEVC][0EB9158A].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:20:07 DEBUG parser_internal ASW Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 01 (1080p) [F51637F7].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:20:07 DEBUG parser_internal ASW Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 02 (1080p) [A5D310BC].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:20:07 DEBUG parser_internal ASW Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 05 (1080p) [E5F426C8].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:20:07 DEBUG parser_internal ASW Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 06 (1080p) [84E1707D].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:20:07 DEBUG urlrewriter ASW Checking 2 entries
2022-11-26 15:20:07 INFO download ASW Downloading: [ASW] 4-nin wa Sorezore Uso wo Tsuku - 07 [1080p HEVC x265 10Bit][AAC]
2022-11-26 15:20:07 DEBUG download ASW Downloading url 'https://nyaa.si/download/1607300.torrent'
2022-11-26 15:20:07 DEBUG utils.requests ASW GETing URL https://nyaa.si/download/1607300.torrent with args () and kwargs {'auth': None, 'headers': {'User-Agent': 'FlexGet/3.5.5 (www.flexget.com)', 'Accept-Encoding': 'gzip, deflate, br', 'Accept': '*/*', 'Connection': 'keep-alive'}, 'allow_redirects': True, 'timeout': 30}
2022-11-26 15:20:07 DEBUG download ASW [ASW] 4-nin wa Sorezore Uso wo Tsuku - 07 [1080p HEVC x265 10Bit][AAC] field file set to: /tmp/tmpel92cy41/d63e519acdcc45764e281c2f80fe9b61
2022-11-26 15:20:07 DEBUG download ASW Found filename from headers: %5BASW%5D%204-nin%20wa%20Sorezore%20Uso%20wo%20Tsuku%20-%2007%20%5B1080p%20HEVC%5D%5B90841F23%5D.mkv.torrent
2022-11-26 15:20:07 DEBUG download ASW Mimetype guess for application/x-bittorrent is ['.torrent']
2022-11-26 15:20:07 DEBUG download ASW Filename %5BASW%5D%204-nin%20wa%20Sorezore%20Uso%20wo%20Tsuku%20-%2007%20%5B1080p%20HEVC%5D%5B90841F23%5D.mkv.torrent extension matches to mime-type
2022-11-26 15:20:07 DEBUG download ASW Finishing download_entry() with filename %5BASW%5D%204-nin%20wa%20Sorezore%20Uso%20wo%20Tsuku%20-%2007%20%5B1080p%20HEVC%5D%5B90841F23%5D.mkv.torrent
2022-11-26 15:20:07 DEBUG download ASW Successfully retrieved [ASW] 4-nin wa Sorezore Uso wo Tsuku - 07 [1080p HEVC x265 10Bit][AAC] from https://nyaa.si/download/1607300.torrent
2022-11-26 15:20:07 INFO download ASW Downloading: [ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC]
2022-11-26 15:20:07 DEBUG download ASW Downloading url 'https://nyaa.si/download/1607177.torrent'
2022-11-26 15:20:07 DEBUG utils.requests ASW GETing URL https://nyaa.si/download/1607177.torrent with args () and kwargs {'auth': None, 'headers': {'User-Agent': 'FlexGet/3.5.5 (www.flexget.com)', 'Accept-Encoding': 'gzip, deflate, br', 'Accept': '*/*', 'Connection': 'keep-alive'}, 'allow_redirects': True, 'timeout': 30}
2022-11-26 15:20:08 DEBUG download ASW [ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC] field file set to: /tmp/tmpisgnm8uv/adba6c44d752d4c39d22bf73d161f48d
2022-11-26 15:20:08 DEBUG download ASW Found filename from headers: %5BASW%5D%20Bocchi%20the%20Rock%21%20-%2008%20%5B1080p%20HEVC%5D%5B3C1AEDA2%5D.mkv.torrent
2022-11-26 15:20:08 DEBUG download ASW Mimetype guess for application/x-bittorrent is ['.torrent']
2022-11-26 15:20:08 DEBUG download ASW Filename %5BASW%5D%20Bocchi%20the%20Rock%21%20-%2008%20%5B1080p%20HEVC%5D%5B3C1AEDA2%5D.mkv.torrent extension matches to mime-type
2022-11-26 15:20:08 DEBUG download ASW Finishing download_entry() with filename %5BASW%5D%20Bocchi%20the%20Rock%21%20-%2008%20%5B1080p%20HEVC%5D%5B3C1AEDA2%5D.mkv.torrent
2022-11-26 15:20:08 DEBUG download ASW Successfully retrieved [ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC] from https://nyaa.si/download/1607177.torrent
2022-11-26 15:20:08 VERBOSE details ASW Summary - Accepted: 2 (Rejected: 4 Undecided: 73 Failed: 0)
2022-11-26 15:20:08 DEBUG modif_torrent ASW [ASW] 4-nin wa Sorezore Uso wo Tsuku - 07 [1080p HEVC x265 10Bit][AAC] seems to be a torrent
2022-11-26 15:20:08 DEBUG modif_torrent ASW [ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC] seems to be a torrent
2022-11-26 15:20:08 DEBUG torrent_files ASW [ASW] 4-nin wa Sorezore Uso wo Tsuku - 07 [1080p HEVC x265 10Bit][AAC] files: ['[ASW] 4-nin wa Sorezore Uso wo Tsuku - 07 [1080p HEVC][90841F23].mkv']
2022-11-26 15:20:08 DEBUG torrent_files ASW [ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC] files: ['[ASW] Bocchi the Rock! - 08 [1080p HEVC][3C1AEDA2].mkv']
2022-11-26 15:20:08 DEBUG torrent_size ASW [ASW] 4-nin wa Sorezore Uso wo Tsuku - 07 [1080p HEVC x265 10Bit][AAC] size: 158.22903537750244 MB
2022-11-26 15:20:08 DEBUG torrent_size ASW [ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC] size: 250.55738925933838 MB
2022-11-26 15:20:08 DEBUG transmission ASW Connecting to http://127.0.0.1:9091/transmission/
2022-11-26 15:20:08 DEBUG transmission ASW Successfully connected to transmission.
2022-11-26 15:20:09 DEBUG utils.template ASW Error during rendering: (UndefinedError) 'tvdb_series_name' is undefined
2022-11-26 15:20:09 ERROR set ASW Could not set content_filename for [ASW] 4-nin wa Sorezore Uso wo Tsuku - 07 [1080p HEVC x265 10Bit][AAC]: (UndefinedError) 'tvdb_series_name' is undefined
2022-11-26 15:20:09 CRITICAL task ASW BUG: Unhandled error in plugin transmission: Trying to render non string template or unrecognized template format, got None
Traceback (most recent call last):
File "/usr/lib/python3.11/threading.py", line 995, in _bootstrap
self._bootstrap_inner()
│ └ <function Thread._bootstrap_inner at 0x7fe932989440>
└ <Thread(task_queue, started daemon 140639457695296)>
File "/usr/lib/python3.11/threading.py", line 1038, in _bootstrap_inner
self.run()
│ └ <function Thread.run at 0x7fe932989120>
└ <Thread(task_queue, started daemon 140639457695296)>
File "/usr/lib/python3.11/threading.py", line 975, in run
self._target(*self._args, **self._kwargs)
│ │ │ │ │ └ {}
│ │ │ │ └ <Thread(task_queue, started daemon 140639457695296)>
│ │ │ └ ()
│ │ └ <Thread(task_queue, started daemon 140639457695296)>
│ └ <bound method TaskQueue.run of <flexget.task_queue.TaskQueue object at 0x7fe92d1ce790>>
└ <Thread(task_queue, started daemon 140639457695296)>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task_queue.py", line 47, in run
self.current_task.execute()
│ │ └ <function Task.execute at 0x7fe930014f40>
│ └ <flexget.task.Task object at 0x7fe92d0e2f10>
└ <flexget.task_queue.TaskQueue object at 0x7fe92d1ce790>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 87, in wrapper
return func(self, *args, **kw)
│ │ │ └ {}
│ │ └ ()
│ └ <flexget.task.Task object at 0x7fe92d0e2f10>
└ <function Task.execute at 0x7fe930014ea0>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 727, in execute
self._execute()
│ └ <function Task._execute at 0x7fe930014e00>
└ <flexget.task.Task object at 0x7fe92d0e2f10>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 696, in _execute
self.__run_task_phase(phase)
│ └ 'output'
└ <flexget.task.Task object at 0x7fe92d0e2f10>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 514, in __run_task_phase
response = self.__run_plugin(plugin, phase, args)
│ │ │ └ (<flexget.task.Task object at 0x7fe92d0e2f10>, {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', ...
│ │ └ 'output'
│ └ <PluginInfo(name=transmission)>
└ <flexget.task.Task object at 0x7fe92d0e2f10>
> File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 547, in __run_plugin
result = method(*args, **kwargs)
│ │ └ {}
│ └ (<flexget.task.Task object at 0x7fe92d0e2f10>, {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', ...
└ <Event(name=plugin.transmission.output,func=on_task_output,priority=135)>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/event.py", line 20, in __call__
return self.func(*args, **kwargs)
│ │ │ └ {}
│ │ └ (<flexget.task.Task object at 0x7fe92d0e2f10>, {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', ...
│ └ <bound method PluginTransmission.on_task_output of <flexget.plugins.clients.transmission.PluginTransmission object at 0x7fe92...
└ <Event(name=plugin.transmission.output,func=on_task_output,priority=135)>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 380, in on_task_output
options = self._make_torrent_options_dict(config, entry)
│ │ │ └ <Entry(title=[ASW] 4-nin wa Sorezore Uso wo Tsuku - 07 [1080p HEVC x265 10Bit][AAC],state=accepted)>
│ │ └ {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', 'enabled': True, 'main_file_ratio': 0.9, 'actio...
│ └ <function PluginTransmission._make_torrent_options_dict at 0x7fe92eeb6160>
└ <flexget.plugins.clients.transmission.PluginTransmission object at 0x7fe92e439710>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 741, in _make_torrent_options_dict
post['content_filename'] = entry.render(opt_dic['content_filename'])
│ │ │ └ {'path': '/mnt/EntertainmentDrive/anime/4-nin wa Sorezore Uso wo Tsuku', 'main_file_only': False, 'main_file_ratio': 0.9, 'ma...
│ │ └ <function Entry.render at 0x7fe93045d580>
│ └ <Entry(title=[ASW] 4-nin wa Sorezore Uso wo Tsuku - 07 [1080p HEVC x265 10Bit][AAC],state=accepted)>
└ {'main_file_only': False, 'main_file_ratio': 0.9, 'magnetization_timeout': 0, 'include_subs': False}
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/entry.py", line 312, in render
raise ValueError(
ValueError: Trying to render non string template or unrecognized template format, got None
Traceback (most recent call last):
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 547, in __run_plugin
result = method(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/event.py", line 20, in __call__
return self.func(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 380, in on_task_output
options = self._make_torrent_options_dict(config, entry)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 741, in _make_torrent_options_dict
post['content_filename'] = entry.render(opt_dic['content_filename'])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/entry.py", line 312, in render
raise ValueError(
ValueError: Trying to render non string template or unrecognized template format, got None

View File

@ -0,0 +1,186 @@
2022-11-26 15:20:10 DEBUG exists_series subsplease series_parser.identifier = 7
2022-11-26 15:20:10 DEBUG parser_internal subsplease Parsing series: `[ASW] 4-nin wa Sorezore Uso wo Tsuku - 04 [1080p HEVC][0EB9158A].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 15:20:10 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[ASW] 4-nin wa Sorezore Uso wo Tsuku - 04 [1080p HEVC][0EB9158A].mkv,name=4-nin wa Sorezore Uso wo Tsuku,id=4,season=0,season_pack=None,episode=4,quality=1080p h265,proper=0,status=OK)> (in 0.3335550000000964 ms)
2022-11-26 15:20:10 DEBUG exists_series subsplease name [ASW] 4-nin wa Sorezore Uso wo Tsuku - 04 [1080p HEVC][0EB9158A].mkv is same series as 4-nin wa Sorezore Uso wo Tsuku
2022-11-26 15:20:10 DEBUG exists_series subsplease disk_parser.identifier = 4
2022-11-26 15:20:10 DEBUG exists_series subsplease disk_parser.quality = 1080p h265
2022-11-26 15:20:10 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 15:20:10 DEBUG exists_series subsplease series_parser.identifier = 7
2022-11-26 15:20:10 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 01 (1080p) [F51637F7].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 15:20:10 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 01 (1080p) [F51637F7].mkv,name=4-nin wa Sorezore Uso wo Tsuku,id=1,season=0,season_pack=None,episode=1,quality=1080p,proper=0,status=OK)> (in 0.33727900000002364 ms)
2022-11-26 15:20:10 DEBUG exists_series subsplease name [SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 01 (1080p) [F51637F7].mkv is same series as 4-nin wa Sorezore Uso wo Tsuku
2022-11-26 15:20:10 DEBUG exists_series subsplease disk_parser.identifier = 1
2022-11-26 15:20:10 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 15:20:10 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 15:20:10 DEBUG exists_series subsplease series_parser.identifier = 7
2022-11-26 15:20:10 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 02 (1080p) [A5D310BC].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 15:20:10 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 02 (1080p) [A5D310BC].mkv,name=4-nin wa Sorezore Uso wo Tsuku,id=2,season=0,season_pack=None,episode=2,quality=1080p,proper=0,status=OK)> (in 0.3347890000000575 ms)
2022-11-26 15:20:10 DEBUG exists_series subsplease name [SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 02 (1080p) [A5D310BC].mkv is same series as 4-nin wa Sorezore Uso wo Tsuku
2022-11-26 15:20:10 DEBUG exists_series subsplease disk_parser.identifier = 2
2022-11-26 15:20:10 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 15:20:10 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 15:20:10 DEBUG exists_series subsplease series_parser.identifier = 7
2022-11-26 15:20:10 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 05 (1080p) [E5F426C8].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 15:20:10 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 05 (1080p) [E5F426C8].mkv,name=4-nin wa Sorezore Uso wo Tsuku,id=5,season=0,season_pack=None,episode=5,quality=1080p,proper=0,status=OK)> (in 0.33332899999960475 ms)
2022-11-26 15:20:10 DEBUG exists_series subsplease name [SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 05 (1080p) [E5F426C8].mkv is same series as 4-nin wa Sorezore Uso wo Tsuku
2022-11-26 15:20:10 DEBUG exists_series subsplease disk_parser.identifier = 5
2022-11-26 15:20:10 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 15:20:10 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 15:20:10 DEBUG exists_series subsplease series_parser.identifier = 7
2022-11-26 15:20:10 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 06 (1080p) [84E1707D].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 15:20:10 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 06 (1080p) [84E1707D].mkv,name=4-nin wa Sorezore Uso wo Tsuku,id=6,season=0,season_pack=None,episode=6,quality=1080p,proper=0,status=OK)> (in 0.41586100000001736 ms)
2022-11-26 15:20:10 DEBUG exists_series subsplease name [SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 06 (1080p) [84E1707D].mkv is same series as 4-nin wa Sorezore Uso wo Tsuku
2022-11-26 15:20:10 DEBUG exists_series subsplease disk_parser.identifier = 6
2022-11-26 15:20:10 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 15:20:10 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 15:20:10 DEBUG exists_series subsplease series_parser.identifier = 7
2022-11-26 15:20:10 DEBUG parser_internal subsplease Parsing series: `[ASW] Bocchi the Rock! - 01 [1080p HEVC][EDC91675].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:20:10 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[ASW] Bocchi the Rock! - 01 [1080p HEVC][EDC91675].mkv,name=Bocchi the Rock!,id=1,season=0,season_pack=None,episode=1,quality=1080p h265,proper=0,status=OK)> (in 0.3923120000002278 ms)
2022-11-26 15:20:10 DEBUG exists_series subsplease name [ASW] Bocchi the Rock! - 01 [1080p HEVC][EDC91675].mkv is same series as Bocchi the Rock!
2022-11-26 15:20:10 DEBUG exists_series subsplease disk_parser.identifier = 1
2022-11-26 15:20:10 DEBUG exists_series subsplease disk_parser.quality = 1080p h265
2022-11-26 15:20:10 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 15:20:10 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 15:20:10 DEBUG parser_internal subsplease Parsing series: `[ASW] Bocchi the Rock! - 02 [1080p HEVC][2C494390].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:20:10 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[ASW] Bocchi the Rock! - 02 [1080p HEVC][2C494390].mkv,name=Bocchi the Rock!,id=2,season=0,season_pack=None,episode=2,quality=1080p h265,proper=0,status=OK)> (in 0.3742159999999828 ms)
2022-11-26 15:20:10 DEBUG exists_series subsplease name [ASW] Bocchi the Rock! - 02 [1080p HEVC][2C494390].mkv is same series as Bocchi the Rock!
2022-11-26 15:20:10 DEBUG exists_series subsplease disk_parser.identifier = 2
2022-11-26 15:20:10 DEBUG exists_series subsplease disk_parser.quality = 1080p h265
2022-11-26 15:20:10 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 15:20:10 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 15:20:10 DEBUG parser_internal subsplease Parsing series: `[ASW] Bocchi the Rock! - 05 [1080p HEVC][CDE54F81].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:20:10 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[ASW] Bocchi the Rock! - 05 [1080p HEVC][CDE54F81].mkv,name=Bocchi the Rock!,id=5,season=0,season_pack=None,episode=5,quality=1080p h265,proper=0,status=OK)> (in 0.3530590000000444 ms)
2022-11-26 15:20:10 DEBUG exists_series subsplease name [ASW] Bocchi the Rock! - 05 [1080p HEVC][CDE54F81].mkv is same series as Bocchi the Rock!
2022-11-26 15:20:10 DEBUG exists_series subsplease disk_parser.identifier = 5
2022-11-26 15:20:10 DEBUG exists_series subsplease disk_parser.quality = 1080p h265
2022-11-26 15:20:10 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 15:20:10 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 15:20:10 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Bocchi the Rock! - 03 (1080p) [1F17BE65].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:20:10 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 03 (1080p) [1F17BE65].mkv,name=Bocchi the Rock!,id=3,season=0,season_pack=None,episode=3,quality=1080p,proper=0,status=OK)> (in 0.35531300000002375 ms)
2022-11-26 15:20:10 DEBUG exists_series subsplease name [SubsPlease] Bocchi the Rock! - 03 (1080p) [1F17BE65].mkv is same series as Bocchi the Rock!
2022-11-26 15:20:10 DEBUG exists_series subsplease disk_parser.identifier = 3
2022-11-26 15:20:10 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 15:20:10 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 15:20:10 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 15:20:10 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Bocchi the Rock! - 04 (1080p) [10FE594B].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:20:10 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 04 (1080p) [10FE594B].mkv,name=Bocchi the Rock!,id=4,season=0,season_pack=None,episode=4,quality=1080p,proper=0,status=OK)> (in 0.3812879999998131 ms)
2022-11-26 15:20:10 DEBUG exists_series subsplease name [SubsPlease] Bocchi the Rock! - 04 (1080p) [10FE594B].mkv is same series as Bocchi the Rock!
2022-11-26 15:20:10 DEBUG exists_series subsplease disk_parser.identifier = 4
2022-11-26 15:20:10 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 15:20:10 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 15:20:10 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 15:20:10 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Bocchi the Rock! - 06 (1080p) [43102018].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:20:10 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 06 (1080p) [43102018].mkv,name=Bocchi the Rock!,id=6,season=0,season_pack=None,episode=6,quality=1080p,proper=0,status=OK)> (in 0.32802999999992366 ms)
2022-11-26 15:20:10 DEBUG exists_series subsplease name [SubsPlease] Bocchi the Rock! - 06 (1080p) [43102018].mkv is same series as Bocchi the Rock!
2022-11-26 15:20:10 DEBUG exists_series subsplease disk_parser.identifier = 6
2022-11-26 15:20:10 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 15:20:10 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 15:20:10 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 15:20:10 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Bocchi the Rock! - 07 (1080p) [D9ACC05A].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:20:10 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 07 (1080p) [D9ACC05A].mkv,name=Bocchi the Rock!,id=7,season=0,season_pack=None,episode=7,quality=1080p,proper=0,status=OK)> (in 0.32599999999982643 ms)
2022-11-26 15:20:10 DEBUG exists_series subsplease name [SubsPlease] Bocchi the Rock! - 07 (1080p) [D9ACC05A].mkv is same series as Bocchi the Rock!
2022-11-26 15:20:10 DEBUG exists_series subsplease disk_parser.identifier = 7
2022-11-26 15:20:10 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 15:20:10 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 15:20:10 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 15:20:10 DEBUG parser_internal subsplease Parsing series: `[ASW] 4-nin wa Sorezore Uso wo Tsuku - 03 [1080p HEVC][003636E5].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:20:10 DEBUG parser_internal subsplease Parsing series: `[ASW] 4-nin wa Sorezore Uso wo Tsuku - 04 [1080p HEVC][0EB9158A].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:20:10 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 01 (1080p) [F51637F7].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:20:10 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 02 (1080p) [A5D310BC].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:20:10 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 05 (1080p) [E5F426C8].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:20:10 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 06 (1080p) [84E1707D].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:20:10 DEBUG urlrewriter subsplease Checking 2 entries
2022-11-26 15:20:10 DEBUG download subsplease Accepting magnet url for [SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 07 (1080p) [2090CD83].mkv
2022-11-26 15:20:10 DEBUG download subsplease Accepting magnet url for [SubsPlease] Bocchi the Rock! - 08 (1080p) [D7E0A44D].mkv
2022-11-26 15:20:10 VERBOSE details subsplease Summary - Accepted: 2 (Rejected: 2 Undecided: 49 Failed: 0)
2022-11-26 15:20:10 DEBUG transmission subsplease Connecting to http://127.0.0.1:9091/transmission/
2022-11-26 15:20:10 DEBUG transmission subsplease Successfully connected to transmission.
2022-11-26 15:20:10 DEBUG utils.template subsplease Error during rendering: (UndefinedError) 'tvdb_series_name' is undefined
2022-11-26 15:20:10 ERROR set subsplease Could not set content_filename for [SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 07 (1080p) [2090CD83].mkv: (UndefinedError) 'tvdb_series_name' is undefined
2022-11-26 15:20:10 CRITICAL task subsplease BUG: Unhandled error in plugin transmission: Trying to render non string template or unrecognized template format, got None
Traceback (most recent call last):
File "/usr/lib/python3.11/threading.py", line 995, in _bootstrap
self._bootstrap_inner()
│ └ <function Thread._bootstrap_inner at 0x7fe932989440>
└ <Thread(task_queue, started daemon 140639457695296)>
File "/usr/lib/python3.11/threading.py", line 1038, in _bootstrap_inner
self.run()
│ └ <function Thread.run at 0x7fe932989120>
└ <Thread(task_queue, started daemon 140639457695296)>
File "/usr/lib/python3.11/threading.py", line 975, in run
self._target(*self._args, **self._kwargs)
│ │ │ │ │ └ {}
│ │ │ │ └ <Thread(task_queue, started daemon 140639457695296)>
│ │ │ └ ()
│ │ └ <Thread(task_queue, started daemon 140639457695296)>
│ └ <bound method TaskQueue.run of <flexget.task_queue.TaskQueue object at 0x7fe92d1ce790>>
└ <Thread(task_queue, started daemon 140639457695296)>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task_queue.py", line 47, in run
self.current_task.execute()
│ │ └ <function Task.execute at 0x7fe930014f40>
│ └ <flexget.task.Task object at 0x7fe92d0e37d0>
└ <flexget.task_queue.TaskQueue object at 0x7fe92d1ce790>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 87, in wrapper
return func(self, *args, **kw)
│ │ │ └ {}
│ │ └ ()
│ └ <flexget.task.Task object at 0x7fe92d0e37d0>
└ <function Task.execute at 0x7fe930014ea0>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 727, in execute
self._execute()
│ └ <function Task._execute at 0x7fe930014e00>
└ <flexget.task.Task object at 0x7fe92d0e37d0>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 696, in _execute
self.__run_task_phase(phase)
│ └ 'output'
└ <flexget.task.Task object at 0x7fe92d0e37d0>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 514, in __run_task_phase
response = self.__run_plugin(plugin, phase, args)
│ │ │ └ (<flexget.task.Task object at 0x7fe92d0e37d0>, {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', ...
│ │ └ 'output'
│ └ <PluginInfo(name=transmission)>
└ <flexget.task.Task object at 0x7fe92d0e37d0>
> File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 547, in __run_plugin
result = method(*args, **kwargs)
│ │ └ {}
│ └ (<flexget.task.Task object at 0x7fe92d0e37d0>, {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', ...
└ <Event(name=plugin.transmission.output,func=on_task_output,priority=135)>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/event.py", line 20, in __call__
return self.func(*args, **kwargs)
│ │ │ └ {}
│ │ └ (<flexget.task.Task object at 0x7fe92d0e37d0>, {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', ...
│ └ <bound method PluginTransmission.on_task_output of <flexget.plugins.clients.transmission.PluginTransmission object at 0x7fe92...
└ <Event(name=plugin.transmission.output,func=on_task_output,priority=135)>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 380, in on_task_output
options = self._make_torrent_options_dict(config, entry)
│ │ │ └ <Entry(title=[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 07 (1080p) [2090CD83].mkv,state=accepted)>
│ │ └ {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', 'enabled': True, 'main_file_ratio': 0.9, 'actio...
│ └ <function PluginTransmission._make_torrent_options_dict at 0x7fe92eeb6160>
└ <flexget.plugins.clients.transmission.PluginTransmission object at 0x7fe92e439710>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 741, in _make_torrent_options_dict
post['content_filename'] = entry.render(opt_dic['content_filename'])
│ │ │ └ {'path': '/mnt/EntertainmentDrive/anime/4-nin wa Sorezore Uso wo Tsuku', 'main_file_only': False, 'main_file_ratio': 0.9, 'ma...
│ │ └ <function Entry.render at 0x7fe93045d580>
│ └ <Entry(title=[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 07 (1080p) [2090CD83].mkv,state=accepted)>
└ {'main_file_only': False, 'main_file_ratio': 0.9, 'magnetization_timeout': 0, 'include_subs': False}
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/entry.py", line 312, in render
raise ValueError(
ValueError: Trying to render non string template or unrecognized template format, got None
Traceback (most recent call last):
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 547, in __run_plugin
result = method(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/event.py", line 20, in __call__
return self.func(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 380, in on_task_output
options = self._make_torrent_options_dict(config, entry)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 741, in _make_torrent_options_dict
post['content_filename'] = entry.render(opt_dic['content_filename'])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/entry.py", line 312, in render
raise ValueError(
ValueError: Trying to render non string template or unrecognized template format, got None

View File

@ -0,0 +1,186 @@
2022-11-26 15:22:18 DEBUG parser_internal ASW Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 06 (1080p) [84E1707D].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 15:22:18 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 06 (1080p) [84E1707D].mkv,name=4-nin wa Sorezore Uso wo Tsuku,id=6,season=0,season_pack=None,episode=6,quality=1080p,proper=0,status=OK)> (in 0.37019499999990657 ms)
2022-11-26 15:22:18 DEBUG exists_series ASW name [SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 06 (1080p) [84E1707D].mkv is same series as 4-nin wa Sorezore Uso wo Tsuku
2022-11-26 15:22:18 DEBUG exists_series ASW disk_parser.identifier = 6
2022-11-26 15:22:18 DEBUG exists_series ASW disk_parser.quality = 1080p
2022-11-26 15:22:18 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 15:22:18 DEBUG exists_series ASW series_parser.identifier = 7
2022-11-26 15:22:18 DEBUG parser_internal ASW Parsing series: `[ASW] Bocchi the Rock! - 01 [1080p HEVC][EDC91675].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 15:22:18 DEBUG parser_internal ASW Parsing series: `[ASW] Bocchi the Rock! - 02 [1080p HEVC][2C494390].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 15:22:18 DEBUG parser_internal ASW Parsing series: `[ASW] Bocchi the Rock! - 05 [1080p HEVC][CDE54F81].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 15:22:18 DEBUG parser_internal ASW Parsing series: `[SubsPlease] Bocchi the Rock! - 03 (1080p) [1F17BE65].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 15:22:18 DEBUG parser_internal ASW Parsing series: `[SubsPlease] Bocchi the Rock! - 04 (1080p) [10FE594B].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 15:22:18 DEBUG parser_internal ASW Parsing series: `[SubsPlease] Bocchi the Rock! - 06 (1080p) [43102018].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 15:22:18 DEBUG parser_internal ASW Parsing series: `[SubsPlease] Bocchi the Rock! - 07 (1080p) [D9ACC05A].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 15:22:18 DEBUG parser_internal ASW Parsing series: `[ASW] 4-nin wa Sorezore Uso wo Tsuku - 03 [1080p HEVC][003636E5].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:22:18 DEBUG parser_internal ASW Parsing series: `[ASW] 4-nin wa Sorezore Uso wo Tsuku - 04 [1080p HEVC][0EB9158A].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:22:18 DEBUG parser_internal ASW Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 01 (1080p) [F51637F7].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:22:18 DEBUG parser_internal ASW Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 02 (1080p) [A5D310BC].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:22:18 DEBUG parser_internal ASW Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 05 (1080p) [E5F426C8].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:22:18 DEBUG parser_internal ASW Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 06 (1080p) [84E1707D].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:22:18 DEBUG parser_internal ASW Parsing series: `[ASW] Bocchi the Rock! - 01 [1080p HEVC][EDC91675].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:22:18 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[ASW] Bocchi the Rock! - 01 [1080p HEVC][EDC91675].mkv,name=Bocchi the Rock!,id=1,season=0,season_pack=None,episode=1,quality=1080p h265,proper=0,status=OK)> (in 0.3363529999997894 ms)
2022-11-26 15:22:18 DEBUG exists_series ASW name [ASW] Bocchi the Rock! - 01 [1080p HEVC][EDC91675].mkv is same series as Bocchi the Rock!
2022-11-26 15:22:18 DEBUG exists_series ASW disk_parser.identifier = 1
2022-11-26 15:22:18 DEBUG exists_series ASW disk_parser.quality = 1080p h265
2022-11-26 15:22:18 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 15:22:18 DEBUG exists_series ASW series_parser.identifier = 8
2022-11-26 15:22:18 DEBUG parser_internal ASW Parsing series: `[ASW] Bocchi the Rock! - 02 [1080p HEVC][2C494390].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:22:18 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[ASW] Bocchi the Rock! - 02 [1080p HEVC][2C494390].mkv,name=Bocchi the Rock!,id=2,season=0,season_pack=None,episode=2,quality=1080p h265,proper=0,status=OK)> (in 0.32238800000028434 ms)
2022-11-26 15:22:18 DEBUG exists_series ASW name [ASW] Bocchi the Rock! - 02 [1080p HEVC][2C494390].mkv is same series as Bocchi the Rock!
2022-11-26 15:22:18 DEBUG exists_series ASW disk_parser.identifier = 2
2022-11-26 15:22:18 DEBUG exists_series ASW disk_parser.quality = 1080p h265
2022-11-26 15:22:18 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 15:22:18 DEBUG exists_series ASW series_parser.identifier = 8
2022-11-26 15:22:18 DEBUG parser_internal ASW Parsing series: `[ASW] Bocchi the Rock! - 05 [1080p HEVC][CDE54F81].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:22:18 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[ASW] Bocchi the Rock! - 05 [1080p HEVC][CDE54F81].mkv,name=Bocchi the Rock!,id=5,season=0,season_pack=None,episode=5,quality=1080p h265,proper=0,status=OK)> (in 0.30799500000000535 ms)
2022-11-26 15:22:18 DEBUG exists_series ASW name [ASW] Bocchi the Rock! - 05 [1080p HEVC][CDE54F81].mkv is same series as Bocchi the Rock!
2022-11-26 15:22:18 DEBUG exists_series ASW disk_parser.identifier = 5
2022-11-26 15:22:18 DEBUG exists_series ASW disk_parser.quality = 1080p h265
2022-11-26 15:22:18 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 15:22:18 DEBUG exists_series ASW series_parser.identifier = 8
2022-11-26 15:22:19 DEBUG parser_internal ASW Parsing series: `[SubsPlease] Bocchi the Rock! - 03 (1080p) [1F17BE65].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:22:19 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 03 (1080p) [1F17BE65].mkv,name=Bocchi the Rock!,id=3,season=0,season_pack=None,episode=3,quality=1080p,proper=0,status=OK)> (in 0.33082099999992565 ms)
2022-11-26 15:22:19 DEBUG exists_series ASW name [SubsPlease] Bocchi the Rock! - 03 (1080p) [1F17BE65].mkv is same series as Bocchi the Rock!
2022-11-26 15:22:19 DEBUG exists_series ASW disk_parser.identifier = 3
2022-11-26 15:22:19 DEBUG exists_series ASW disk_parser.quality = 1080p
2022-11-26 15:22:19 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 15:22:19 DEBUG exists_series ASW series_parser.identifier = 8
2022-11-26 15:22:19 DEBUG parser_internal ASW Parsing series: `[SubsPlease] Bocchi the Rock! - 04 (1080p) [10FE594B].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:22:19 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 04 (1080p) [10FE594B].mkv,name=Bocchi the Rock!,id=4,season=0,season_pack=None,episode=4,quality=1080p,proper=0,status=OK)> (in 0.39753200000003375 ms)
2022-11-26 15:22:19 DEBUG exists_series ASW name [SubsPlease] Bocchi the Rock! - 04 (1080p) [10FE594B].mkv is same series as Bocchi the Rock!
2022-11-26 15:22:19 DEBUG exists_series ASW disk_parser.identifier = 4
2022-11-26 15:22:19 DEBUG exists_series ASW disk_parser.quality = 1080p
2022-11-26 15:22:19 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 15:22:19 DEBUG exists_series ASW series_parser.identifier = 8
2022-11-26 15:22:19 DEBUG parser_internal ASW Parsing series: `[SubsPlease] Bocchi the Rock! - 06 (1080p) [43102018].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:22:19 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 06 (1080p) [43102018].mkv,name=Bocchi the Rock!,id=6,season=0,season_pack=None,episode=6,quality=1080p,proper=0,status=OK)> (in 0.4212059999999518 ms)
2022-11-26 15:22:19 DEBUG exists_series ASW name [SubsPlease] Bocchi the Rock! - 06 (1080p) [43102018].mkv is same series as Bocchi the Rock!
2022-11-26 15:22:19 DEBUG exists_series ASW disk_parser.identifier = 6
2022-11-26 15:22:19 DEBUG exists_series ASW disk_parser.quality = 1080p
2022-11-26 15:22:19 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 15:22:19 DEBUG exists_series ASW series_parser.identifier = 8
2022-11-26 15:22:19 DEBUG parser_internal ASW Parsing series: `[SubsPlease] Bocchi the Rock! - 07 (1080p) [D9ACC05A].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:22:19 DEBUG parser_internal ASW Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 07 (1080p) [D9ACC05A].mkv,name=Bocchi the Rock!,id=7,season=0,season_pack=None,episode=7,quality=1080p,proper=0,status=OK)> (in 0.41112800000009386 ms)
2022-11-26 15:22:19 DEBUG exists_series ASW name [SubsPlease] Bocchi the Rock! - 07 (1080p) [D9ACC05A].mkv is same series as Bocchi the Rock!
2022-11-26 15:22:19 DEBUG exists_series ASW disk_parser.identifier = 7
2022-11-26 15:22:19 DEBUG exists_series ASW disk_parser.quality = 1080p
2022-11-26 15:22:19 DEBUG exists_series ASW disk_parser.proper_count = 0
2022-11-26 15:22:19 DEBUG exists_series ASW series_parser.identifier = 8
2022-11-26 15:22:19 DEBUG urlrewriter ASW Checking 2 entries
2022-11-26 15:22:19 INFO download ASW Downloading: [ASW] 4-nin wa Sorezore Uso wo Tsuku - 07 [1080p HEVC x265 10Bit][AAC]
2022-11-26 15:22:19 DEBUG download ASW Downloading url 'https://nyaa.si/download/1607300.torrent'
2022-11-26 15:22:19 DEBUG utils.requests ASW GETing URL https://nyaa.si/download/1607300.torrent with args () and kwargs {'auth': None, 'headers': {'User-Agent': 'FlexGet/3.5.5 (www.flexget.com)', 'Accept-Encoding': 'gzip, deflate, br', 'Accept': '*/*', 'Connection': 'keep-alive'}, 'allow_redirects': True, 'timeout': 30}
2022-11-26 15:22:19 DEBUG download ASW [ASW] 4-nin wa Sorezore Uso wo Tsuku - 07 [1080p HEVC x265 10Bit][AAC] field file set to: /tmp/tmpi7t1ulem/d63e519acdcc45764e281c2f80fe9b61
2022-11-26 15:22:19 DEBUG download ASW Found filename from headers: %5BASW%5D%204-nin%20wa%20Sorezore%20Uso%20wo%20Tsuku%20-%2007%20%5B1080p%20HEVC%5D%5B90841F23%5D.mkv.torrent
2022-11-26 15:22:19 DEBUG download ASW Mimetype guess for application/x-bittorrent is ['.torrent']
2022-11-26 15:22:19 DEBUG download ASW Filename %5BASW%5D%204-nin%20wa%20Sorezore%20Uso%20wo%20Tsuku%20-%2007%20%5B1080p%20HEVC%5D%5B90841F23%5D.mkv.torrent extension matches to mime-type
2022-11-26 15:22:19 DEBUG download ASW Finishing download_entry() with filename %5BASW%5D%204-nin%20wa%20Sorezore%20Uso%20wo%20Tsuku%20-%2007%20%5B1080p%20HEVC%5D%5B90841F23%5D.mkv.torrent
2022-11-26 15:22:19 DEBUG download ASW Successfully retrieved [ASW] 4-nin wa Sorezore Uso wo Tsuku - 07 [1080p HEVC x265 10Bit][AAC] from https://nyaa.si/download/1607300.torrent
2022-11-26 15:22:19 INFO download ASW Downloading: [ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC]
2022-11-26 15:22:19 DEBUG download ASW Downloading url 'https://nyaa.si/download/1607177.torrent'
2022-11-26 15:22:19 DEBUG utils.requests ASW GETing URL https://nyaa.si/download/1607177.torrent with args () and kwargs {'auth': None, 'headers': {'User-Agent': 'FlexGet/3.5.5 (www.flexget.com)', 'Accept-Encoding': 'gzip, deflate, br', 'Accept': '*/*', 'Connection': 'keep-alive'}, 'allow_redirects': True, 'timeout': 30}
2022-11-26 15:22:19 DEBUG download ASW [ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC] field file set to: /tmp/tmp4kgb29pn/adba6c44d752d4c39d22bf73d161f48d
2022-11-26 15:22:19 DEBUG download ASW Found filename from headers: %5BASW%5D%20Bocchi%20the%20Rock%21%20-%2008%20%5B1080p%20HEVC%5D%5B3C1AEDA2%5D.mkv.torrent
2022-11-26 15:22:19 DEBUG download ASW Mimetype guess for application/x-bittorrent is ['.torrent']
2022-11-26 15:22:19 DEBUG download ASW Filename %5BASW%5D%20Bocchi%20the%20Rock%21%20-%2008%20%5B1080p%20HEVC%5D%5B3C1AEDA2%5D.mkv.torrent extension matches to mime-type
2022-11-26 15:22:19 DEBUG download ASW Finishing download_entry() with filename %5BASW%5D%20Bocchi%20the%20Rock%21%20-%2008%20%5B1080p%20HEVC%5D%5B3C1AEDA2%5D.mkv.torrent
2022-11-26 15:22:19 DEBUG download ASW Successfully retrieved [ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC] from https://nyaa.si/download/1607177.torrent
2022-11-26 15:22:19 VERBOSE details ASW Summary - Accepted: 2 (Rejected: 4 Undecided: 73 Failed: 0)
2022-11-26 15:22:19 DEBUG modif_torrent ASW [ASW] 4-nin wa Sorezore Uso wo Tsuku - 07 [1080p HEVC x265 10Bit][AAC] seems to be a torrent
2022-11-26 15:22:19 DEBUG modif_torrent ASW [ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC] seems to be a torrent
2022-11-26 15:22:19 DEBUG torrent_files ASW [ASW] 4-nin wa Sorezore Uso wo Tsuku - 07 [1080p HEVC x265 10Bit][AAC] files: ['[ASW] 4-nin wa Sorezore Uso wo Tsuku - 07 [1080p HEVC][90841F23].mkv']
2022-11-26 15:22:19 DEBUG torrent_files ASW [ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC] files: ['[ASW] Bocchi the Rock! - 08 [1080p HEVC][3C1AEDA2].mkv']
2022-11-26 15:22:19 DEBUG torrent_size ASW [ASW] 4-nin wa Sorezore Uso wo Tsuku - 07 [1080p HEVC x265 10Bit][AAC] size: 158.22903537750244 MB
2022-11-26 15:22:19 DEBUG torrent_size ASW [ASW] Bocchi the Rock! - 08 [1080p HEVC x265 10Bit][AAC] size: 250.55738925933838 MB
2022-11-26 15:22:19 DEBUG transmission ASW Connecting to http://127.0.0.1:9091/transmission/
2022-11-26 15:22:19 DEBUG transmission ASW Successfully connected to transmission.
2022-11-26 15:22:20 DEBUG utils.template ASW Error during rendering: (UndefinedError) 'tvdb_series_name' is undefined
2022-11-26 15:22:20 ERROR set ASW Could not set content_filename for [ASW] 4-nin wa Sorezore Uso wo Tsuku - 07 [1080p HEVC x265 10Bit][AAC]: (UndefinedError) 'tvdb_series_name' is undefined
2022-11-26 15:22:20 CRITICAL task ASW BUG: Unhandled error in plugin transmission: Trying to render non string template or unrecognized template format, got None
Traceback (most recent call last):
File "/usr/lib/python3.11/threading.py", line 995, in _bootstrap
self._bootstrap_inner()
│ └ <function Thread._bootstrap_inner at 0x7f0322bc5440>
└ <Thread(task_queue, started daemon 139651349538368)>
File "/usr/lib/python3.11/threading.py", line 1038, in _bootstrap_inner
self.run()
│ └ <function Thread.run at 0x7f0322bc5120>
└ <Thread(task_queue, started daemon 139651349538368)>
File "/usr/lib/python3.11/threading.py", line 975, in run
self._target(*self._args, **self._kwargs)
│ │ │ │ │ └ {}
│ │ │ │ └ <Thread(task_queue, started daemon 139651349538368)>
│ │ │ └ ()
│ │ └ <Thread(task_queue, started daemon 139651349538368)>
│ └ <bound method TaskQueue.run of <flexget.task_queue.TaskQueue object at 0x7f031d44e810>>
└ <Thread(task_queue, started daemon 139651349538368)>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task_queue.py", line 47, in run
self.current_task.execute()
│ │ └ <function Task.execute at 0x7f03202a4f40>
│ └ <flexget.task.Task object at 0x7f031d212d10>
└ <flexget.task_queue.TaskQueue object at 0x7f031d44e810>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 87, in wrapper
return func(self, *args, **kw)
│ │ │ └ {}
│ │ └ ()
│ └ <flexget.task.Task object at 0x7f031d212d10>
└ <function Task.execute at 0x7f03202a4ea0>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 727, in execute
self._execute()
│ └ <function Task._execute at 0x7f03202a4e00>
└ <flexget.task.Task object at 0x7f031d212d10>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 696, in _execute
self.__run_task_phase(phase)
│ └ 'output'
└ <flexget.task.Task object at 0x7f031d212d10>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 514, in __run_task_phase
response = self.__run_plugin(plugin, phase, args)
│ │ │ └ (<flexget.task.Task object at 0x7f031d212d10>, {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', ...
│ │ └ 'output'
│ └ <PluginInfo(name=transmission)>
└ <flexget.task.Task object at 0x7f031d212d10>
> File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 547, in __run_plugin
result = method(*args, **kwargs)
│ │ └ {}
│ └ (<flexget.task.Task object at 0x7f031d212d10>, {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', ...
└ <Event(name=plugin.transmission.output,func=on_task_output,priority=135)>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/event.py", line 20, in __call__
return self.func(*args, **kwargs)
│ │ │ └ {}
│ │ └ (<flexget.task.Task object at 0x7f031d212d10>, {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', ...
│ └ <bound method PluginTransmission.on_task_output of <flexget.plugins.clients.transmission.PluginTransmission object at 0x7f031...
└ <Event(name=plugin.transmission.output,func=on_task_output,priority=135)>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 380, in on_task_output
options = self._make_torrent_options_dict(config, entry)
│ │ │ └ <Entry(title=[ASW] 4-nin wa Sorezore Uso wo Tsuku - 07 [1080p HEVC x265 10Bit][AAC],state=accepted)>
│ │ └ {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', 'enabled': True, 'main_file_ratio': 0.9, 'actio...
│ └ <function PluginTransmission._make_torrent_options_dict at 0x7f031f13a160>
└ <flexget.plugins.clients.transmission.PluginTransmission object at 0x7f031e6b0990>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 741, in _make_torrent_options_dict
post['content_filename'] = entry.render(opt_dic['content_filename'])
│ │ │ └ {'path': '/mnt/EntertainmentDrive/anime/4-nin wa Sorezore Uso wo Tsuku', 'main_file_only': False, 'main_file_ratio': 0.9, 'ma...
│ │ └ <function Entry.render at 0x7f03206ed580>
│ └ <Entry(title=[ASW] 4-nin wa Sorezore Uso wo Tsuku - 07 [1080p HEVC x265 10Bit][AAC],state=accepted)>
└ {'main_file_only': False, 'main_file_ratio': 0.9, 'magnetization_timeout': 0, 'include_subs': False}
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/entry.py", line 312, in render
raise ValueError(
ValueError: Trying to render non string template or unrecognized template format, got None
Traceback (most recent call last):
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 547, in __run_plugin
result = method(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/event.py", line 20, in __call__
return self.func(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 380, in on_task_output
options = self._make_torrent_options_dict(config, entry)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 741, in _make_torrent_options_dict
post['content_filename'] = entry.render(opt_dic['content_filename'])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/entry.py", line 312, in render
raise ValueError(
ValueError: Trying to render non string template or unrecognized template format, got None

View File

@ -0,0 +1,186 @@
2022-11-26 15:22:21 DEBUG exists_series subsplease series_parser.identifier = 7
2022-11-26 15:22:21 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 01 (1080p) [F51637F7].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 15:22:21 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 01 (1080p) [F51637F7].mkv,name=4-nin wa Sorezore Uso wo Tsuku,id=1,season=0,season_pack=None,episode=1,quality=1080p,proper=0,status=OK)> (in 0.35313799999991957 ms)
2022-11-26 15:22:21 DEBUG exists_series subsplease name [SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 01 (1080p) [F51637F7].mkv is same series as 4-nin wa Sorezore Uso wo Tsuku
2022-11-26 15:22:21 DEBUG exists_series subsplease disk_parser.identifier = 1
2022-11-26 15:22:21 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 15:22:21 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 15:22:21 DEBUG exists_series subsplease series_parser.identifier = 7
2022-11-26 15:22:21 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 02 (1080p) [A5D310BC].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 15:22:21 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 02 (1080p) [A5D310BC].mkv,name=4-nin wa Sorezore Uso wo Tsuku,id=2,season=0,season_pack=None,episode=2,quality=1080p,proper=0,status=OK)> (in 0.36239400000015465 ms)
2022-11-26 15:22:21 DEBUG exists_series subsplease name [SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 02 (1080p) [A5D310BC].mkv is same series as 4-nin wa Sorezore Uso wo Tsuku
2022-11-26 15:22:21 DEBUG exists_series subsplease disk_parser.identifier = 2
2022-11-26 15:22:21 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 15:22:21 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 15:22:21 DEBUG exists_series subsplease series_parser.identifier = 7
2022-11-26 15:22:21 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 05 (1080p) [E5F426C8].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 15:22:21 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 05 (1080p) [E5F426C8].mkv,name=4-nin wa Sorezore Uso wo Tsuku,id=5,season=0,season_pack=None,episode=5,quality=1080p,proper=0,status=OK)> (in 0.4156799999996963 ms)
2022-11-26 15:22:21 DEBUG exists_series subsplease name [SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 05 (1080p) [E5F426C8].mkv is same series as 4-nin wa Sorezore Uso wo Tsuku
2022-11-26 15:22:21 DEBUG exists_series subsplease disk_parser.identifier = 5
2022-11-26 15:22:21 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 15:22:21 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 15:22:21 DEBUG exists_series subsplease series_parser.identifier = 7
2022-11-26 15:22:21 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 06 (1080p) [84E1707D].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 15:22:21 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 06 (1080p) [84E1707D].mkv,name=4-nin wa Sorezore Uso wo Tsuku,id=6,season=0,season_pack=None,episode=6,quality=1080p,proper=0,status=OK)> (in 0.35054399999978614 ms)
2022-11-26 15:22:21 DEBUG exists_series subsplease name [SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 06 (1080p) [84E1707D].mkv is same series as 4-nin wa Sorezore Uso wo Tsuku
2022-11-26 15:22:21 DEBUG exists_series subsplease disk_parser.identifier = 6
2022-11-26 15:22:21 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 15:22:21 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 15:22:21 DEBUG exists_series subsplease series_parser.identifier = 7
2022-11-26 15:22:21 DEBUG parser_internal subsplease Parsing series: `[ASW] Bocchi the Rock! - 01 [1080p HEVC][EDC91675].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 15:22:21 DEBUG parser_internal subsplease Parsing series: `[ASW] Bocchi the Rock! - 02 [1080p HEVC][2C494390].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 15:22:21 DEBUG parser_internal subsplease Parsing series: `[ASW] Bocchi the Rock! - 05 [1080p HEVC][CDE54F81].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 15:22:21 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Bocchi the Rock! - 03 (1080p) [1F17BE65].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 15:22:21 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Bocchi the Rock! - 04 (1080p) [10FE594B].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 15:22:21 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Bocchi the Rock! - 06 (1080p) [43102018].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 15:22:21 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Bocchi the Rock! - 07 (1080p) [D9ACC05A].mkv` kwargs: {'name': '4-nin wa Sorezore Uso wo Tsuku'}
2022-11-26 15:22:21 DEBUG parser_internal subsplease Parsing series: `[ASW] 4-nin wa Sorezore Uso wo Tsuku - 03 [1080p HEVC][003636E5].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:22:21 DEBUG parser_internal subsplease Parsing series: `[ASW] 4-nin wa Sorezore Uso wo Tsuku - 04 [1080p HEVC][0EB9158A].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:22:21 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 01 (1080p) [F51637F7].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:22:21 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 02 (1080p) [A5D310BC].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:22:21 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 05 (1080p) [E5F426C8].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:22:21 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 06 (1080p) [84E1707D].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:22:21 DEBUG parser_internal subsplease Parsing series: `[ASW] Bocchi the Rock! - 01 [1080p HEVC][EDC91675].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:22:21 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[ASW] Bocchi the Rock! - 01 [1080p HEVC][EDC91675].mkv,name=Bocchi the Rock!,id=1,season=0,season_pack=None,episode=1,quality=1080p h265,proper=0,status=OK)> (in 0.30863699999983396 ms)
2022-11-26 15:22:21 DEBUG exists_series subsplease name [ASW] Bocchi the Rock! - 01 [1080p HEVC][EDC91675].mkv is same series as Bocchi the Rock!
2022-11-26 15:22:21 DEBUG exists_series subsplease disk_parser.identifier = 1
2022-11-26 15:22:21 DEBUG exists_series subsplease disk_parser.quality = 1080p h265
2022-11-26 15:22:21 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 15:22:21 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 15:22:21 DEBUG parser_internal subsplease Parsing series: `[ASW] Bocchi the Rock! - 02 [1080p HEVC][2C494390].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:22:21 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[ASW] Bocchi the Rock! - 02 [1080p HEVC][2C494390].mkv,name=Bocchi the Rock!,id=2,season=0,season_pack=None,episode=2,quality=1080p h265,proper=0,status=OK)> (in 0.3409489999999238 ms)
2022-11-26 15:22:21 DEBUG exists_series subsplease name [ASW] Bocchi the Rock! - 02 [1080p HEVC][2C494390].mkv is same series as Bocchi the Rock!
2022-11-26 15:22:21 DEBUG exists_series subsplease disk_parser.identifier = 2
2022-11-26 15:22:21 DEBUG exists_series subsplease disk_parser.quality = 1080p h265
2022-11-26 15:22:21 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 15:22:21 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 15:22:21 DEBUG parser_internal subsplease Parsing series: `[ASW] Bocchi the Rock! - 05 [1080p HEVC][CDE54F81].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:22:21 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[ASW] Bocchi the Rock! - 05 [1080p HEVC][CDE54F81].mkv,name=Bocchi the Rock!,id=5,season=0,season_pack=None,episode=5,quality=1080p h265,proper=0,status=OK)> (in 0.3343470000003457 ms)
2022-11-26 15:22:21 DEBUG exists_series subsplease name [ASW] Bocchi the Rock! - 05 [1080p HEVC][CDE54F81].mkv is same series as Bocchi the Rock!
2022-11-26 15:22:21 DEBUG exists_series subsplease disk_parser.identifier = 5
2022-11-26 15:22:21 DEBUG exists_series subsplease disk_parser.quality = 1080p h265
2022-11-26 15:22:21 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 15:22:21 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 15:22:21 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Bocchi the Rock! - 03 (1080p) [1F17BE65].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:22:21 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 03 (1080p) [1F17BE65].mkv,name=Bocchi the Rock!,id=3,season=0,season_pack=None,episode=3,quality=1080p,proper=0,status=OK)> (in 0.37291699999997263 ms)
2022-11-26 15:22:21 DEBUG exists_series subsplease name [SubsPlease] Bocchi the Rock! - 03 (1080p) [1F17BE65].mkv is same series as Bocchi the Rock!
2022-11-26 15:22:21 DEBUG exists_series subsplease disk_parser.identifier = 3
2022-11-26 15:22:21 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 15:22:21 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 15:22:21 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 15:22:21 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Bocchi the Rock! - 04 (1080p) [10FE594B].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:22:21 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 04 (1080p) [10FE594B].mkv,name=Bocchi the Rock!,id=4,season=0,season_pack=None,episode=4,quality=1080p,proper=0,status=OK)> (in 0.34256399999987863 ms)
2022-11-26 15:22:21 DEBUG exists_series subsplease name [SubsPlease] Bocchi the Rock! - 04 (1080p) [10FE594B].mkv is same series as Bocchi the Rock!
2022-11-26 15:22:21 DEBUG exists_series subsplease disk_parser.identifier = 4
2022-11-26 15:22:21 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 15:22:21 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 15:22:21 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 15:22:21 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Bocchi the Rock! - 06 (1080p) [43102018].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:22:21 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 06 (1080p) [43102018].mkv,name=Bocchi the Rock!,id=6,season=0,season_pack=None,episode=6,quality=1080p,proper=0,status=OK)> (in 0.329103999999969 ms)
2022-11-26 15:22:21 DEBUG exists_series subsplease name [SubsPlease] Bocchi the Rock! - 06 (1080p) [43102018].mkv is same series as Bocchi the Rock!
2022-11-26 15:22:21 DEBUG exists_series subsplease disk_parser.identifier = 6
2022-11-26 15:22:21 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 15:22:21 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 15:22:21 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 15:22:21 DEBUG parser_internal subsplease Parsing series: `[SubsPlease] Bocchi the Rock! - 07 (1080p) [D9ACC05A].mkv` kwargs: {'name': 'Bocchi the Rock!'}
2022-11-26 15:22:21 DEBUG parser_internal subsplease Parsing result: <SeriesParser(data=[SubsPlease] Bocchi the Rock! - 07 (1080p) [D9ACC05A].mkv,name=Bocchi the Rock!,id=7,season=0,season_pack=None,episode=7,quality=1080p,proper=0,status=OK)> (in 0.3457280000001006 ms)
2022-11-26 15:22:21 DEBUG exists_series subsplease name [SubsPlease] Bocchi the Rock! - 07 (1080p) [D9ACC05A].mkv is same series as Bocchi the Rock!
2022-11-26 15:22:21 DEBUG exists_series subsplease disk_parser.identifier = 7
2022-11-26 15:22:21 DEBUG exists_series subsplease disk_parser.quality = 1080p
2022-11-26 15:22:21 DEBUG exists_series subsplease disk_parser.proper_count = 0
2022-11-26 15:22:21 DEBUG exists_series subsplease series_parser.identifier = 8
2022-11-26 15:22:21 DEBUG urlrewriter subsplease Checking 2 entries
2022-11-26 15:22:21 DEBUG download subsplease Accepting magnet url for [SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 07 (1080p) [2090CD83].mkv
2022-11-26 15:22:21 DEBUG download subsplease Accepting magnet url for [SubsPlease] Bocchi the Rock! - 08 (1080p) [D7E0A44D].mkv
2022-11-26 15:22:21 VERBOSE details subsplease Summary - Accepted: 2 (Rejected: 2 Undecided: 49 Failed: 0)
2022-11-26 15:22:21 DEBUG transmission subsplease Connecting to http://127.0.0.1:9091/transmission/
2022-11-26 15:22:21 DEBUG transmission subsplease Successfully connected to transmission.
2022-11-26 15:22:22 DEBUG utils.template subsplease Error during rendering: (UndefinedError) 'tvdb_series_name' is undefined
2022-11-26 15:22:22 ERROR set subsplease Could not set content_filename for [SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 07 (1080p) [2090CD83].mkv: (UndefinedError) 'tvdb_series_name' is undefined
2022-11-26 15:22:22 CRITICAL task subsplease BUG: Unhandled error in plugin transmission: Trying to render non string template or unrecognized template format, got None
Traceback (most recent call last):
File "/usr/lib/python3.11/threading.py", line 995, in _bootstrap
self._bootstrap_inner()
│ └ <function Thread._bootstrap_inner at 0x7f0322bc5440>
└ <Thread(task_queue, started daemon 139651349538368)>
File "/usr/lib/python3.11/threading.py", line 1038, in _bootstrap_inner
self.run()
│ └ <function Thread.run at 0x7f0322bc5120>
└ <Thread(task_queue, started daemon 139651349538368)>
File "/usr/lib/python3.11/threading.py", line 975, in run
self._target(*self._args, **self._kwargs)
│ │ │ │ │ └ {}
│ │ │ │ └ <Thread(task_queue, started daemon 139651349538368)>
│ │ │ └ ()
│ │ └ <Thread(task_queue, started daemon 139651349538368)>
│ └ <bound method TaskQueue.run of <flexget.task_queue.TaskQueue object at 0x7f031d44e810>>
└ <Thread(task_queue, started daemon 139651349538368)>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task_queue.py", line 47, in run
self.current_task.execute()
│ │ └ <function Task.execute at 0x7f03202a4f40>
│ └ <flexget.task.Task object at 0x7f031d2135d0>
└ <flexget.task_queue.TaskQueue object at 0x7f031d44e810>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 87, in wrapper
return func(self, *args, **kw)
│ │ │ └ {}
│ │ └ ()
│ └ <flexget.task.Task object at 0x7f031d2135d0>
└ <function Task.execute at 0x7f03202a4ea0>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 727, in execute
self._execute()
│ └ <function Task._execute at 0x7f03202a4e00>
└ <flexget.task.Task object at 0x7f031d2135d0>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 696, in _execute
self.__run_task_phase(phase)
│ └ 'output'
└ <flexget.task.Task object at 0x7f031d2135d0>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 514, in __run_task_phase
response = self.__run_plugin(plugin, phase, args)
│ │ │ └ (<flexget.task.Task object at 0x7f031d2135d0>, {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', ...
│ │ └ 'output'
│ └ <PluginInfo(name=transmission)>
└ <flexget.task.Task object at 0x7f031d2135d0>
> File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 547, in __run_plugin
result = method(*args, **kwargs)
│ │ └ {}
│ └ (<flexget.task.Task object at 0x7f031d2135d0>, {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', ...
└ <Event(name=plugin.transmission.output,func=on_task_output,priority=135)>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/event.py", line 20, in __call__
return self.func(*args, **kwargs)
│ │ │ └ {}
│ │ └ (<flexget.task.Task object at 0x7f031d2135d0>, {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', ...
│ └ <bound method PluginTransmission.on_task_output of <flexget.plugins.clients.transmission.PluginTransmission object at 0x7f031...
└ <Event(name=plugin.transmission.output,func=on_task_output,priority=135)>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 380, in on_task_output
options = self._make_torrent_options_dict(config, entry)
│ │ │ └ <Entry(title=[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 07 (1080p) [2090CD83].mkv,state=accepted)>
│ │ └ {'host': '127.0.0.1', 'port': 9091, 'username': 'fuzzy', 'password': 'comma', 'enabled': True, 'main_file_ratio': 0.9, 'actio...
│ └ <function PluginTransmission._make_torrent_options_dict at 0x7f031f13a160>
└ <flexget.plugins.clients.transmission.PluginTransmission object at 0x7f031e6b0990>
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 741, in _make_torrent_options_dict
post['content_filename'] = entry.render(opt_dic['content_filename'])
│ │ │ └ {'path': '/mnt/EntertainmentDrive/anime/4-nin wa Sorezore Uso wo Tsuku', 'main_file_only': False, 'main_file_ratio': 0.9, 'ma...
│ │ └ <function Entry.render at 0x7f03206ed580>
│ └ <Entry(title=[SubsPlease] 4-nin wa Sorezore Uso wo Tsuku - 07 (1080p) [2090CD83].mkv,state=accepted)>
└ {'main_file_only': False, 'main_file_ratio': 0.9, 'magnetization_timeout': 0, 'include_subs': False}
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/entry.py", line 312, in render
raise ValueError(
ValueError: Trying to render non string template or unrecognized template format, got None
Traceback (most recent call last):
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/task.py", line 547, in __run_plugin
result = method(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/event.py", line 20, in __call__
return self.func(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 380, in on_task_output
options = self._make_torrent_options_dict(config, entry)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/plugins/clients/transmission.py", line 741, in _make_torrent_options_dict
post['content_filename'] = entry.render(opt_dic['content_filename'])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/fuzzy/.local/share/flexget/lib/python3.11/site-packages/flexget/entry.py", line 312, in render
raise ValueError(
ValueError: Trying to render non string template or unrecognized template format, got None

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@ -7,3 +7,4 @@ screenshot-png-compression=7 # Setting too high may lag the PC on weaker systems
screenshot-directory="~/Pictures/mpv-screenshot"
volume=100 # Set volume to 100% on startup.
sub-auto=fuzzy
osd-fractions

View File

@ -14,10 +14,9 @@ Plugin 'itchyny/lightline.vim'
Plugin 'ryanoasis/vim-devicons'
Plugin 'norcalli/nvim-colorizer.lua'
Plugin 'lukas-reineke/indent-blankline.nvim'
Plugin 'vim-syntastic/syntastic'
Plugin 'neovim/nvim-lspconfig'
Plugin 'neoclide/coc.nvim'
Plugin 'easymotion/vim-easymotion'
Plugin 'neoclide/coc.nvim'
Plugin 'sainnhe/sonokai'
Plugin 'chasinglogic/modus-themes-vim'
@ -41,6 +40,8 @@ Plugin 'catppuccin/nvim'
call vundle#end()
filetype plugin indent on
nmap <S-Enter> O<Esc>
nmap <CR> o<Esc>
"set termguicolors
lua require('neoscroll').setup()
lua require('nvim-autopairs').setup()
@ -66,14 +67,8 @@ set cursorline
match Whitespace /\s\+$/
set statusline+=%#warningmsg#
set statusline+=%{SyntasticStatuslineFlag()}
set statusline+=%*
let g:syntastic_always_populate_loc_list = 1
let g:syntastic_auto_loc_list = 1
let g:syntastic_check_on_open = 1
let g:syntastic_check_on_wq = 0
" Give more space for displaying messages.
set cmdheight=2
@ -93,138 +88,18 @@ else
set signcolumn=yes
endif
" Use tab for trigger completion with characters ahead and navigate.
" NOTE: Use command ':verbose imap <tab>' to make sure tab is not mapped by
" other plugin before putting this into your config.
inoremap <silent><expr> <TAB>
\ pumvisible() ? "\<C-n>" :
\ <SID>check_back_space() ? "\<TAB>" :
\ coc#refresh()
inoremap <expr><S-TAB> pumvisible() ? "\<C-p>" : "\<C-h>"
function! s:check_back_space() abort
let col = col('.') - 1
return !col || getline('.')[col - 1] =~# '\s'
" use <tab> for trigger completion and navigate to the next complete item
function! CheckBackspace() abort
let col = col('.') - 1
return !col || getline('.')[col - 1] =~# '\s'
endfunction
" Use <c-space> to trigger completion.
if has('nvim')
inoremap <silent><expr> <c-space> coc#refresh()
else
inoremap <silent><expr> <c-@> coc#refresh(
endif
inoremap <silent><expr> <Tab>
\ coc#pum#visible() ? coc#pum#next(1) :
\ CheckBackspace() ? "\<Tab>" :
\ coc#refresh()
" Make <CR> auto-select the first completion item and notify coc.nvim to
" format on enter, <cr> could be remapped by other vim plugin
inoremap <silent><expr> <cr> pumvisible() ? coc#_select_confirm()
\: "\<C-g>u\<CR>\<c-r>=coc#on_enter()\<CR>"
" use <c-space>for trigger completion
inoremap <silent><expr> <c-space> coc#refresh()
" Use `[g` and `]g` to navigate diagnostics
" Use `:CocDiagnostics` to get all diagnostics of current buffer in location list.
nmap <silent> [g <Plug>(coc-diagnostic-prev)
nmap <silent> ]g <Plug>(coc-diagnostic-next)
" GoTo code navigation.
nmap <silent> gd <Plug>(coc-definition)
nmap <silent> gy <Plug>(coc-type-definition)
nmap <silent> gi <Plug>(coc-implementation)
nmap <silent> gr <Plug>(coc-references)
" Use K to show documentation in preview window.
nnoremap <silent> K :call <SID>show_documentation()<CR>
function! s:show_documentation()
if (index(['vim','help'], &filetype) >= 0)
execute 'h '.expand('<cword>')
elseif (coc#rpc#ready())
call CocActionAsync('doHover')
else
execute '!' . &keywordprg . " " . expand('<cword>')
endif
endfunction
" Highlight the symbol and its references when holding the cursor.
autocmd CursorHold * silent call CocActionAsync('highlight')
" Symbol renaming.
nmap <leader>rn <Plug>(coc-rename)
" Formatting selected code.
xmap <leader>f <Plug>(coc-format-selected)
nmap <leader>f <Plug>(coc-format-selected)
augroup mygroup
autocmd!
" Setup formatexpr specified filetype(s).
autocmd FileType typescript,json setl formatexpr=CocAction('formatSelected')
" Update signature help on jump placeholder.
autocmd User CocJumpPlaceholder call CocActionAsync('showSignatureHelp')
augroup end
" Applying codeAction to the selected region.
" Example: `<leader>aap` for current paragraph
xmap <leader>a <Plug>(coc-codeaction-selected)
nmap <leader>a <Plug>(coc-codeaction-selected)
" Remap keys for applying codeAction to the current buffer.
nmap <leader>ac <Plug>(coc-codeaction)
" Apply AutoFix to problem on the current line.
nmap <leader>qf <Plug>(coc-fix-current)
" Map function and class text objects
" NOTE: Requires 'textDocument.documentSymbol' support from the language server.
xmap if <Plug>(coc-funcobj-i)
omap if <Plug>(coc-funcobj-i)
xmap af <Plug>(coc-funcobj-a)
omap af <Plug>(coc-funcobj-a)
xmap ic <Plug>(coc-classobj-i)
omap ic <Plug>(coc-classobj-i)
xmap ac <Plug>(coc-classobj-a)
omap ac <Plug>(coc-classobj-a)
" Remap <C-f> and <C-b> for scroll float windows/popups.
if has('nvim-0.4.0') || has('patch-8.2.0750')
nnoremap <silent><nowait><expr> <C-f> coc#float#has_scroll() ? coc#float#scroll(1) : "\<C-f>"
nnoremap <silent><nowait><expr> <C-b> coc#float#has_scroll() ? coc#float#scroll(0) : "\<C-b>"
inoremap <silent><nowait><expr> <C-f> coc#float#has_scroll() ? "\<c-r>=coc#float#scroll(1)\<cr>" : "\<Right>"
inoremap <silent><nowait><expr> <C-b> coc#float#has_scroll() ? "\<c-r>=coc#float#scroll0)\<cr>" : "\<Left>"
vnoremap <silent><nowait><expr> <C-f> coc#float#has_scroll() ? coc#float#scroll(1) : "\<C-f>"
vnoremap <silent><nowait><expr> <C-b> coc#float#has_scroll() ? coc#float#scroll(0) : "\<C-b>"
endif
" Use CTRL-S for selections ranges.
" Requires 'textDocument/selectionRange' support of language server.
nmap <silent> <C-s> <Plug>(coc-range-select)
xmap <silent> <C-s> <Plug>(coc-range-select)
" Add `:Format` command to format current buffer.
command! -nargs=0 Format :call CocAction('format')
" Add `:Fold` command to fold current buffer.
command! -nargs=? Fold :call CocAction('fold', <f-args>)
" Add `:OR` command for organize imports of the current buffer.
command! -nargs=0 OR :call CocAction('runCommand', 'editor.action.organizeImport')
" Add (Neo)Vim's native statusline support.
" NOTE: Please see `:h coc-status` for integrations with external plugins that
" provide custom statusline: lightline.vim, vim-airline.
set statusline^=%{coc#status()}%{get(b:,'coc_current_function','')}
" Mappings for CoCList
" Show all diagnostics.
nnoremap <silent><nowait> <space>a :<C-u>CocList diagnostics<cr>
" Manage extensions.
nnoremap <silent><nowait> <space>e :<C-u>CocList extensions<cr>
" Show commands.
nnoremap <silent><nowait> <space>c :<C-u>CocList commands<cr>
" Find symbol of current document.
nnoremap <silent><nowait> <space>o :<C-u>CocList outline<cr>
" Search workspace symbols.
nnoremap <silent><nowait> <space>s :<C-u>CocList -I symbols<cr>
" Do default action for next item.
nnoremap <silent><nowait> <space>j :<C-u>CocNext<CR>
" Do default action for previous item.
nnoremap <silent><nowait> <space>k :<C-u>CocPrev<CR>
" Resume latest coc list.
nnoremap <silent><nowait> <space>p :<C-u>CocListResume<CR>(
inoremap <silent><expr> <cr> coc#pum#visible() ? coc#_select_confirm() : "\<C-g>u\<CR>"

View File

@ -0,0 +1,59 @@
{
"languageserver": {
"ccls": {
"command": "ccls",
"filetypes": ["c", "cc", "cpp", "c++", "objc", "objcpp"],
"rootPatterns": [".ccls", "compile_commands.json", ".git/", ".hg/"],
"initializationOptions": {
"cache": {
"directory": "/tmp/ccls"
}
}
},
"bash": {
"command": "bash-language-server",
"args": ["start"],
"filetypes": ["sh"]
},
"cmake": {
"command": "cmake-language-server",
"filetypes": ["cmake"],
"rootPatterns": [
"build/"
],
"initializationOptions": {
"buildDirectory": "build"
}
},
"golang": {
"command": "gopls",
"rootPatterns": ["go.mod"],
"filetypes": ["go"]
},
"haskell": {
"command": "haskell-language-server-wrapper",
"args": ["--lsp"],
"rootPatterns": ["*.cabal", "stack.yaml", "cabal.project", "package.yaml", "hie.yaml"],
"filetypes": ["haskell", "lhaskell"]
},
"lua": {
"command": "lua-lsp",
"filetypes": ["lua"]
},
"intelephense": {
"command": "intelephense",
"args": ["--stdio"],
"filetypes": ["php"],
"initializationOptions": {
"storagePath": "/tmp/intelephense"
}
},
"rust": {
"command": "rust-analyzer",
"filetypes": ["rust"],
"rootPatterns": ["Cargo.toml"]
}
}
}

View File

@ -0,0 +1,94 @@
set nocompatible " be iMproved, required
filetype off " required
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin 'mg979/vim-visual-multi'
Plugin 'terrortylor/nvim-comment'
Plugin 'windwp/nvim-autopairs'
Plugin 'Pocco81/AutoSave.nvim'
Plugin 'karb94/neoscroll.nvim'
Plugin 'nvim-treesitter/nvim-treesitter'
Plugin 'itchyny/lightline.vim'
Plugin 'ryanoasis/vim-devicons'
Plugin 'norcalli/nvim-colorizer.lua'
Plugin 'lukas-reineke/indent-blankline.nvim'
Plugin 'neovim/nvim-lspconfig'
Plugin 'easymotion/vim-easymotion'
Plugin 'neoclide/coc.nvim'
Plugin 'sainnhe/sonokai'
Plugin 'chasinglogic/modus-themes-vim'
Plugin 'joshdick/onedark.vim'
Plugin 'https://gitlab.com/yorickpeterse/happy_hacking.vim'
Plugin 'sickill/vim-monokai'
Plugin 'sonph/onehalf'
Plugin 'jnurmine/Zenburn'
Plugin 'drewtempelmeyer/palenight.vim'
Plugin 'morhetz/gruvbox'
Plugin 'wadackel/vim-dogrun'
Plugin 'tyrannicaltoucan/vim-quantum'
Plugin 'bluz71/vim-moonfly-colors'
Plugin 'tyrannicaltoucan/vim-deep-space'
Plugin 'xero/sourcerer.vim'
Plugin 'tssm/fairyfloss.vim'
Plugin 'catppuccin/nvim'
call vundle#end()
filetype plugin indent on
"set termguicolors
lua require('neoscroll').setup()
lua require('nvim-autopairs').setup()
lua require('nvim_comment').setup()
"lua require('colorizer').setup()
""" Main Config
colorscheme sourcerer
set tabstop=8 softtabstop=8 noexpandtab smarttab autoindent
set incsearch ignorecase smartcase hlsearch
set ruler laststatus=2 showcmd showmode
set wrap breakindent
set encoding=utf-8
set textwidth=0
set hidden
set number relativenumber
set title
set cursorline
"hi CursorLine cterm=bold
"hi CursorLineNr term=bold cterm=bold
"hi LineNr
"hi Whitespace ctermbg=red
match Whitespace /\s\+$/
" Give more space for displaying messages.
set cmdheight=2
" Having longer updatetime (default is 4000 ms = 4 s) leads to noticeable
" delays and poor user experience.
set updatetime=300
" Always show the signcolumn, otherwise it would shift the text each time
" diagnostics appear/become resolved.
" Use K to show documentation in preview window.
nnoremap <silent> K :call <SID>show_documentation()<CR>
" use <tab> for trigger completion and navigate to the next complete item
function! CheckBackspace() abort
let col = col('.') - 1
return !col || getline('.')[col - 1] =~# '\s'
endfunction
inoremap <silent><expr> <Tab>
\ coc#pum#visible() ? coc#pum#next(1) :
\ CheckBackspace() ? "\<Tab>" :
\ coc#refresh()
" use <c-space>for trigger completion
inoremap <silent><expr> <c-space> coc#refresh()
" Use <C-@> on vim
inoremap <silent><expr> <c-@> coc#refresh()
inoremap <expr> <Tab> coc#pum#visible() ? coc#pum#next(1) : "\<Tab>"
inoremap <expr> <S-Tab> coc#pum#visible() ? coc#pum#prev(1) : "\<S-Tab>"

10
nvim/.config/nvim/nvim/node_modules/.yarn-integrity generated vendored Normal file
View File

@ -0,0 +1,10 @@
{
"systemParams": "linux-x64-93",
"modulesFolders": [],
"flags": [],
"linkedModules": [],
"topLevelPatterns": [],
"lockfileEntries": {},
"files": [],
"artifacts": {}
}

View File

@ -0,0 +1,4 @@
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1

View File

@ -51,7 +51,7 @@ font-2 = forkawesome:pixelsize=13;3
;https://forkaweso.me/Fork-Awesome/
font-3 = Source Han Sans JP VF:pixelsize=13;3
modules-left = title
modules-left = moon title
modules-center = swatch
modules-right = network clipboard soundSwitch soundIcon pulseaudio newpower
@ -79,6 +79,12 @@ label = %output%
click-left = ~/Documents/scripts/dcaltoggle.sh
[module/moon]
type=custom/script
exec = moonmoji
format = <label>
label = %output%
[module/clipboard]
type=custom/text

View File

@ -1,10 +1,10 @@
#screenshot everything with maim
Print
/home/fuzzy/Documents/scripts/screenshotCurrentMonitor.sh
#Print
# /home/fuzzy/Documents/scripts/screenshotCurrentMonitor.sh
#
#screenshot selected region with maim
ctrl + Print
maim /home/fuzzy/Pictures/screenshots/(date +%s).png -s
#ctrl + Print
# maim /home/fuzzy/Pictures/screenshots/(date +%s).png -s
#enable volume up & volume down media keys
XF86AudioRaiseVolume