From 087dc5065d6e6f37aa9a525d2573ee0f302058de Mon Sep 17 00:00:00 2001 From: Thomas Adamcik Date: Sat, 16 Nov 2013 03:13:22 +0100 Subject: [PATCH] local: Remove argument that was simply added for testing help formatting --- mopidy/backends/local/commands.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/mopidy/backends/local/commands.py b/mopidy/backends/local/commands.py index 9afedf5f..c2ef143c 100644 --- a/mopidy/backends/local/commands.py +++ b/mopidy/backends/local/commands.py @@ -22,10 +22,6 @@ class LocalCommand(commands.Command): class ScanCommand(commands.Command): help = "Scan local media files and populate the local library." - def __init__(self): - super(ScanCommand, self).__init__() - self.add_argument('--limit', type=int, help='number of tracks to scan') - def run(self, args, config, extensions): media_dir = config['local']['media_dir'] scan_timeout = config['local']['scan_timeout']