代码中vim的设置

来源:互联网 发布:淘宝tanx 编辑:程序博客网 时间:2024/06/06 11:11
# vim: tabstop=4 shiftwidth=4 softtabstop=4


# Copyright 2012 United States Government as represented by the

import logging
import os
import sys
import pdb


from openstack_dashboard import exceptions


ROOT_PATH = os.path.dirname(os.path.abspath(__file__))
BIN_DIR = os.path.abspath(os.path.join(ROOT_PATH, '..', 'bin'))


if ROOT_PATH not in sys.path:
    sys.path.append(ROOT_PATH)