From cd68d04067d5aa6e6e2c039ec13b7e357990e8c3 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 19 Jun 2014 13:19:02 +0200 Subject: [PATCH] Add missing space --- qutebrowser/config/conftypes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qutebrowser/config/conftypes.py b/qutebrowser/config/conftypes.py index a2ebada50..0b49e0a73 100644 --- a/qutebrowser/config/conftypes.py +++ b/qutebrowser/config/conftypes.py @@ -122,7 +122,7 @@ class BaseType: if self.valid_values is not None: if value not in self.valid_values: raise ValidationError(value, "valid values: {}".format( - ','.join(self.valid_values))) + ', '.join(self.valid_values))) else: return else: