Properly exit when "gmg deletemedia" succeed.
authorBerker Peksag <berker.peksag@gmail.com>
Fri, 9 May 2014 13:02:24 +0000 (16:02 +0300)
committerChristopher Allan Webber <cwebber@dustycloud.org>
Fri, 13 Jun 2014 15:30:46 +0000 (10:30 -0500)
Also, fixed a typo: "to will be" -> "will be"

mediagoblin/gmg_commands/deletemedia.py

index d08e76cc2f5e31d78b47b6b6a71ba593d3d74af3..ed1ca4e9fc74f8ad14d075338b4940df27ed4817 100644 (file)
 # You should have received a copy of the GNU Affero General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
+import sys
+
 from mediagoblin.gmg_commands import util as commands_util
 
 
 def parser_setup(subparser):
     subparser.add_argument('media_ids',
-                           help='Comma separated list of media IDs to will be deleted.')
+                           help='Comma separated list of media IDs will be deleted.')
 
 
 def deletemedia(args):
@@ -36,3 +38,4 @@ def deletemedia(args):
     for media in media_ids - found_medias:
         print 'Can\'t find a media with ID %d.' % media
     print 'Done.'
+    sys.exit(0)