← Back to team overview

launchpad-reviewers team mailing list archive

[Merge] ~cjwatson/launchpad:flake8-e501 into launchpad:master

 

Colin Watson has proposed merging ~cjwatson/launchpad:flake8-e501 into launchpad:master.

Commit message:
flake8: Fix E501 line too long

Requested reviews:
  Launchpad code reviewers (launchpad-reviewers)

For more details, see:
https://code.launchpad.net/~cjwatson/launchpad/+git/launchpad/+merge/406654

Introduced by recent lint-fixing.
-- 
Your team Launchpad code reviewers is requested to review the proposed merge of ~cjwatson/launchpad:flake8-e501 into launchpad:master.
diff --git a/lib/lp/translations/scripts/language_pack.py b/lib/lp/translations/scripts/language_pack.py
index e70ab7d..a514671 100644
--- a/lib/lp/translations/scripts/language_pack.py
+++ b/lib/lp/translations/scripts/language_pack.py
@@ -264,8 +264,8 @@ def export_language_pack(distribution_name, series_name, logger,
             logger.error('Uploading to the Librarian failed: %s', e)
             return None
         except Exception:
-            # Generic exception statements are used in order to prevent premature
-            # termination of the script.
+            # Generic exception statements are used in order to prevent
+            # premature termination of the script.
             logger.exception(
                 'Uncaught exception while uploading to the Librarian')
             return None