global: pep8 (E222)
authorFlorent Kermarrec <florent@enjoy-digital.fr>
Mon, 13 Apr 2015 14:58:04 +0000 (16:58 +0200)
committerFlorent Kermarrec <florent@enjoy-digital.fr>
Mon, 13 Apr 2015 14:58:04 +0000 (16:58 +0200)
misoclib/video/dvisampler/datacapture.py

index c4c40bbec5baea3b1c5504afe58b5bda6c4034dd..3f8d9bf4b791fb1d5710309cb23bf172ccff36cf 100644 (file)
@@ -98,7 +98,7 @@ class DataCapture(Module, AutoCSR):
             If(reset_lateness,
                 lateness.eq(2**(ntbits - 1))
             ).Elif(~delay_master_busy & ~delay_slave_busy & ~too_late & ~too_early,
-                If(pd_valid &  pd_incdec, lateness.eq(lateness - 1)),
+                If(pd_valid & pd_incdec, lateness.eq(lateness - 1)),
                 If(pd_valid & ~pd_incdec, lateness.eq(lateness + 1))
             )
         ]