From 25c067f75d61dddb4894ddf1f1270d4179becfdc Mon Sep 17 00:00:00 2001 From: Martin Baeuml Date: Wed, 29 Jun 2011 15:42:57 +0200 Subject: [PATCH] remove obsolete sloth-cli --- sloth/bin/sloth-cli | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100755 sloth/bin/sloth-cli diff --git a/sloth/bin/sloth-cli b/sloth/bin/sloth-cli deleted file mode 100755 index 8e64a04..0000000 --- a/sloth/bin/sloth-cli +++ /dev/null @@ -1,11 +0,0 @@ -#!/usr/bin/env python -import sys -from sloth.core.cli import CommandLineUtility - -def execute_from_command_line(argv=None): - utility = CommandLineUtility(argv) - utility.execute() - -if __name__ == "__main__": - execute_from_command_line(sys.argv) -