mirror of
https://github.com/pkkid/python-plexapi
synced 2024-11-10 06:04:15 +00:00
6 lines
170 B
Python
6 lines
170 B
Python
# -*- coding: utf-8 -*-
|
|
import sys
|
|
from os.path import dirname, abspath
|
|
|
|
# Make sure plexapi is in the systempath
|
|
sys.path.insert(0, dirname(dirname(abspath(__file__))))
|