From ebf7b8e4ff6935e0a582df0682c07c4316509b10 Mon Sep 17 00:00:00 2001 From: laharah Date: Wed, 12 May 2021 09:47:54 -0700 Subject: [PATCH] support unicode literalls for linux boxes --- filebottool/pyfilebot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/filebottool/pyfilebot.py b/filebottool/pyfilebot.py index 902d587..07a40f0 100644 --- a/filebottool/pyfilebot.py +++ b/filebottool/pyfilebot.py @@ -1,7 +1,7 @@ """Contains functions for interaction with the filebotCLI and the FilebotHandler convenience class. """ -from __future__ import absolute_import +from __future__ import absolute_import, unicode_literals import six __author__ = "laharah"