Skip to content

Commit

Permalink
Fix long line
Browse files Browse the repository at this point in the history
  • Loading branch information
willkg committed Sep 14, 2018
1 parent 1dacd18 commit 09600cd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion socorro/processor/mozilla_transform_rules.py
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,8 @@ def _action(self, raw_crash, raw_dumps, processed_crash, processor_meta):
product_name = 'Focus'

# Rewrite FirefoxReality crashes (bug #1474037).
if product_name == 'FennecAndroid' and raw_crash.get('Android_Manufacturer', '') == 'Oculus':
if ((product_name == 'FennecAndroid' and
raw_crash.get('Android_Manufacturer', '') == 'Oculus')):
product_name = 'FirefoxReality'

# If we made any product name changes, persist them and keep the
Expand Down

0 comments on commit 09600cd

Please sign in to comment.