blob: 67fa17cde3f53e5fdeb3bcf068cf4390b499d495 [file] [log] [blame]
# -*- coding: utf-8 -*-
# Copyright 2016 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""Try to set up a chromite virtualenv, and print the import path."""
from __future__ import print_function
from chromite.lib import commandline
import sys
import pprint
def GetParser():
"""Creates the argparse parser."""
parser = commandline.ArgumentParser(description=__doc__)
return parser
def main(argv):
parser = GetParser()
parser.parse_args(argv)
print('The import path is:')
pprint.pprint(sys.path)