← Back to team overview

ubuntu-touch-coreapps-reviewers team mailing list archive

[Merge] lp:~dholbach/help-app/pep8-fixes into lp:help-app

 

Daniel Holbach has proposed merging lp:~dholbach/help-app/pep8-fixes into lp:help-app.

Requested reviews:
  Ubuntu Help app developers (help-app-dev)

For more details, see:
https://code.launchpad.net/~dholbach/help-app/pep8-fixes/+merge/254013
-- 
Your team Ubuntu Help app developers is requested to review the proposed merge of lp:~dholbach/help-app/pep8-fixes into lp:help-app.
=== modified file 'internals/tests/test_translations.py'
--- internals/tests/test_translations.py	2015-03-24 12:45:06 +0000
+++ internals/tests/test_translations.py	2015-03-24 22:45:34 +0000
@@ -34,11 +34,10 @@
 
     def test_markup_in_po_or_pot_files(self):
         po = self.translations.po
-        files = [ po.pot_file_ob ]
+        files = [po.pot_file_ob]
         for po_fn in po.langs:
             po.load_pofile(po_fn)
-            files += [ po.langs[po_fn]['pofile'] ]
+            files += [po.langs[po_fn]['pofile']]
         for po_file in files:
             for tag in HIDE_FROM_POT:
                 self.assertEqual(po_file.find_in_msgid(tag), [])
-                


Follow ups