comparison tests/test_template_keywords.py @ 832:e9af7eba88db

globally: clean up whitespace around operators and commas to conform with PEP8 Mostly autoformatted by Eclipse. A few manual corrections were performed where Eclipse's autoformatter did something non-idiomatic.
author Yonggang Luo <luoyonggang@gmail.com>
date Wed, 12 Oct 2011 15:35:25 +0800
parents 4baa41e0f8ad
children 312b37bc5e20
comparison
equal deleted inserted replaced
831:be5bbb2f2d68 832:e9af7eba88db
80 self.assertRaises(error.ParseError, 80 self.assertRaises(error.ParseError,
81 commands.log, self.ui(), repo, 81 commands.log, self.ui(), repo,
82 template='{rev}:{svnrev} ', **defaults) 82 template='{rev}:{svnrev} ', **defaults)
83 83
84 def suite(): 84 def suite():
85 all = [unittest.TestLoader().loadTestsFromTestCase(TestLogKeywords),] 85 all = [unittest.TestLoader().loadTestsFromTestCase(TestLogKeywords), ]
86 return unittest.TestSuite(all) 86 return unittest.TestSuite(all)