fix flake8 warnings

This commit is contained in:
Fabrice Laporte 2014-05-10 10:57:44 +02:00
parent 21feab7ab1
commit 02f7e78fd3
2 changed files with 2 additions and 2 deletions

View file

@ -96,7 +96,7 @@ class BucketPluginTest(unittest.TestCase, TestHelper):
def test_alpha_first_last_chars(self):
"""Alphabet buckets can be named by listing the 'from-to' syntax"""
self._setup_config(bucket_alpha=['0->9','A->D', 'F-H', 'I->Z'])
self._setup_config(bucket_alpha=['0->9', 'A->D', 'F-H', 'I->Z'])
self.assertEqual(self.plugin._tmpl_bucket('garry'), 'F-H')
self.assertEqual(self.plugin._tmpl_bucket('2pac'), '0->9')