From 39ac72f314dc408f4f7c878ccbf61d629f3cca0a Mon Sep 17 00:00:00 2001 From: Ajay Garg Date: Sat, 29 Dec 2012 12:15:05 +0000 Subject: Adding a missing import. Thanks to Daniel Narvaez (dwnarvaez@gmail.com) for the prior review. --- diff --git a/commands/build b/commands/build index aa313b4..0ac97fb 100755 --- a/commands/build +++ b/commands/build @@ -5,6 +5,7 @@ import sys import common +from devbot import build from devbot import main parser = argparse.ArgumentParser() @@ -13,7 +14,6 @@ parser.add_argument("--full", action="store_true", help="force a full build") args = parser.parse_args() common.setup(log_name="build") - if args.module: if not build.build_one(args.module): sys.exit(1) -- cgit v0.9.1