From 5b63cb38aebc2896503c9e2efa2bbee5a9139b9b Mon Sep 17 00:00:00 2001 From: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> Date: Wed, 14 Oct 2020 14:13:55 -0700 Subject: [PATCH] Timestamp required for checking if export exists --- plexpy/exporter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plexpy/exporter.py b/plexpy/exporter.py index bf6b79e0..26f41481 100644 --- a/plexpy/exporter.py +++ b/plexpy/exporter.py @@ -2196,7 +2196,7 @@ def get_export_filepath(title, timestamp, filename): return os.path.join(dirpath, filename) -def check_export_exists(title, timestamp=None, filename=None): +def check_export_exists(title, timestamp, filename=None): if filename: return os.path.isfile(get_export_filepath(title, timestamp, filename)) return os.path.isdir(get_export_dirpath(title, timestamp))