]> kaliko git repositories - mpd-goodies.git/blobdiff - src/crop
* reorganized source folders
[mpd-goodies.git] / src / crop
diff --git a/crop b/src/crop
similarity index 95%
rename from crop
rename to src/crop
index 944241a1c4bcf35723a2a0bdb0a6d70cd737f050..5f7dde568d1ec3ccc42510cb0fd084253aa61097 100755 (executable)
--- a/crop
+++ b/src/crop
@@ -1,7 +1,7 @@
 #!/usr/bin/env python
 # -*- coding: utf-8 -*-
 
-# Copyright (c) 2009, 2010 Efrim <efrim@azylum.org> {{{
+# Copyright (c) 2009, 2010 Efrim <efrim@azylum.org>
 #
 #   This program is free software: you can redistribute it and/or modify
 #   it under the terms of the GNU General Public License as published by
@@ -16,8 +16,6 @@
 #   You should have received a copy of the GNU General Public License
 #   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
-#  }}}
-
 
 import sys
 
@@ -28,6 +26,7 @@ NAME = 'crop'
 VERSION = '0.1'
 USAGE = 'USAGE:  %prog [--help] | [ <n> ]'
 
+
 class Crop(StartOpt, MPDClass):
     """
     """
@@ -61,7 +60,7 @@ class Crop(StartOpt, MPDClass):
         print 'Keeping %i tracks' % self.nb_tracks
         self.mpdConnect()
         current_pos = int(self.client.currentsong().get('pos', 0))
-        if current_pos <=  self.nb_tracks:
+        if current_pos <= self.nb_tracks:
             self.client.disconnect()
             sys.exit(0)
         while current_pos > self.nb_tracks: