log2zulip: Fix paths to the rest of the project.

This commit is contained in:
Tim Abbott 2017-06-01 17:57:42 -07:00
parent 486e4e30da
commit d18e0bcdca
1 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ import traceback
try:
# Use the Zulip virtualenv if available
sys.path.append(os.path.join(os.path.dirname(__file__), ".."))
sys.path.append(os.path.join(os.path.dirname(__file__), "../../.."))
import scripts.lib.setup_path_on_import
except ImportError:
pass
@ -20,7 +20,7 @@ except ImportError:
import json
import ujson
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "../api"))
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "../../"))
import zulip
from typing import List