diff options
author | Elio Maldonado <[email protected]> | 2015-06-30 12:07:16 -0700 |
---|---|---|
committer | Elio Maldonado <[email protected]> | 2015-06-30 12:07:16 -0700 |
commit | 1fdef90a3c8b8fb5aba6d8f4960dfb8cb32ebad9 (patch) | |
tree | d4c9e8944fe240b9931010f4b68fce30ff6d06ab | |
parent | fc5a6c0e16785ed808005d553cc8818aa2caa1d6 (diff) | |
download | nssmockbuilds4fedora-1fdef90a3c8b8fb5aba6d8f4960dfb8cb32ebad9.tar.gz nssmockbuilds4fedora-1fdef90a3c8b8fb5aba6d8f4960dfb8cb32ebad9.tar.xz nssmockbuilds4fedora-1fdef90a3c8b8fb5aba6d8f4960dfb8cb32ebad9.zip |
Add more imports plus minor cleanup
-rwxr-xr-x | build-nss.py | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/build-nss.py b/build-nss.py index 1eb0208..0f72b03 100755 --- a/build-nss.py +++ b/build-nss.py @@ -1,10 +1,20 @@ -#!/usr/bin/python - +#!/usr/bin/env python + +# vim: expandtab tabstop=4 shiftwidth=4 softtabstop=4 +# -*- coding: utf-8 -*- + import sys import os import argparse import json import build_functions +import logging +import re +import subprocess +import commands +import shutil +import git +import distutils.dir_util print os.environ.get("USER") ####################################################### @@ -68,8 +78,8 @@ parser.add_argument('-sc', '--skipcopy', default=True, help='skip the copy portion of the program. [default=True] ') -parser.add_argument('-sw', '--skipwget', - action="store_true", +parser.add_argument('-sw', '--skipwget', + action="store_true", dest="skipWget", default=True, help='skip the wget portion of the program. [default=True] ') |