From 90c883da67a872dd7b44c5d8dbf0e96f295dd8f9 Mon Sep 17 00:00:00 2001 From: blitzmann Date: Sun, 19 Jul 2015 15:51:03 -0400 Subject: [PATCH] Fix some syntax errors. --- eos/effects/caldarishipewcapacitorneedcc.py | 2 +- eos/effects/shipbonusscanprobestrengthgf.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/eos/effects/caldarishipewcapacitorneedcc.py b/eos/effects/caldarishipewcapacitorneedcc.py index d0c1f9108..9224e2728 100644 --- a/eos/effects/caldarishipewcapacitorneedcc.py +++ b/eos/effects/caldarishipewcapacitorneedcc.py @@ -7,4 +7,4 @@ type = "passive" def handler(fit, ship, context): fit.modules.filteredItemBoost(lambda mod: mod.item.group.name == "ECM", - "capacitorNeed", ship.getModifiedItemAttr("shipBonusCC", skill="Caldari Cruiser") + "capacitorNeed", ship.getModifiedItemAttr("shipBonusCC"), skill="Caldari Cruiser") diff --git a/eos/effects/shipbonusscanprobestrengthgf.py b/eos/effects/shipbonusscanprobestrengthgf.py index eed28a084..0d419793b 100644 --- a/eos/effects/shipbonusscanprobestrengthgf.py +++ b/eos/effects/shipbonusscanprobestrengthgf.py @@ -5,4 +5,4 @@ type = "passive" def handler(fit, ship, context): fit.modules.filteredChargeBoost(lambda mod: mod.charge.group.name == "Scanner Probe", - "baseSensorStrength", ship.getModifiedItemAttr("shipBonusGF2", skill="Gallente Frigate"l) + "baseSensorStrength", ship.getModifiedItemAttr("shipBonusGF2"), skill="Gallente Frigate")