summaryrefslogtreecommitdiff
path: root/pywal/sequences.py
diff options
context:
space:
mode:
Diffstat (limited to 'pywal/sequences.py')
-rw-r--r--pywal/sequences.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/pywal/sequences.py b/pywal/sequences.py
index 87339d9..4844837 100644
--- a/pywal/sequences.py
+++ b/pywal/sequences.py
@@ -2,6 +2,7 @@
Send sequences to all open terminals.
"""
import glob
+import os
from .settings import CACHE_DIR, OS
from . import util
@@ -81,5 +82,5 @@ def send(colors, vte, cache_dir=CACHE_DIR):
for term in glob.glob(tty_pattern):
util.save_file(sequences, term)
- util.save_file(sequences, cache_dir / "sequences")
+ util.save_file(sequences, os.path.join(cache_dir, "sequences"))
print("colors: Set terminal colors.")