From 0badb4e9888f88922c06b211012d02d46c514e30 Mon Sep 17 00:00:00 2001 From: Kevin Midboe Date: Sat, 15 Sep 2018 12:34:18 +0200 Subject: [PATCH] Sets name_hash to correct variable hashid not name_hash.wq --- src/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core.py b/src/core.py index 5d6e0a0..3839775 100755 --- a/src/core.py +++ b/src/core.py @@ -76,7 +76,7 @@ def scan_video(path): # hash of name hashids = Hashids(min_length=16) hashid = hashids.encode(path) - video.name_hash = name_hash + video.name_hash = hashid return video