summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@redhat.com>2007-11-19 14:06:29 -0500
committerMichael DeHaan <mdehaan@redhat.com>2007-11-19 14:06:29 -0500
commit7773de4b1d830f7306d2b55cd3ad9accf087d55b (patch)
tree3900a601c8d9d2953e67d14d78bddaa4d686087c /scripts
parent6883cbe9f59f72a72001ab0862df8b78e18e632c (diff)
downloadthird_party-cobbler-7773de4b1d830f7306d2b55cd3ad9accf087d55b.tar.gz
third_party-cobbler-7773de4b1d830f7306d2b55cd3ad9accf087d55b.tar.xz
third_party-cobbler-7773de4b1d830f7306d2b55cd3ad9accf087d55b.zip
Initial bits of code to make CLI modular, and use new object system for defining new CLI commands.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/cobbler3
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/cobbler b/scripts/cobbler
index 4aef615..1b69ab6 100755
--- a/scripts/cobbler
+++ b/scripts/cobbler
@@ -14,7 +14,6 @@ along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
"""
-import sys
import cobbler.cobbler as app
-sys.exit(app.main())
+app.main()