zulip_tools.py: Move zulip_tools.py in scripts/lib.

This commit moves zulip_tools.py as part of cleaning the root directory
and organizing proejct into better directory structure.
This commit is contained in:
Taranjeet Singh
2016-08-13 21:16:19 +05:30
committed by Tim Abbott
parent c9b05a2a84
commit d606b95242
14 changed files with 13 additions and 13 deletions

View File

@@ -9,7 +9,7 @@ ZULIP_PATH = dirname(dirname(dirname(abspath(__file__))))
if ZULIP_PATH not in sys.path:
sys.path.append(ZULIP_PATH)
from zulip_tools import run
from scripts.lib.zulip_tools import run
from scripts.lib.setup_venv import setup_virtualenv, VENV_DEPENDENCIES
parser = argparse.ArgumentParser(description="Create a production virtualenv with caching")