From c32f67f38c0b0bee2284aab76da1a66da8463179 Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Sat, 16 Nov 2013 14:06:45 +0100 Subject: [PATCH] commands: Use single quotes --- mopidy/commands.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mopidy/commands.py b/mopidy/commands.py index cb239ca0..49a69c2c 100644 --- a/mopidy/commands.py +++ b/mopidy/commands.py @@ -327,7 +327,7 @@ class RootCommand(Command): class ConfigCommand(Command): - help = "Show currently active configuration." + help = 'Show currently active configuration.' def __init__(self): super(ConfigCommand, self).__init__() @@ -339,7 +339,7 @@ class ConfigCommand(Command): class DepsCommand(Command): - help = "Show dependencies and debug information." + help = 'Show dependencies and debug information.' def __init__(self): super(DepsCommand, self).__init__()