Changeset 11704 for main/waeup.kofa


Ignore:
Timestamp:
23 Jun 2014, 08:23:46 (10 years ago)
Author:
Henrik Bettermann
Message:

Replace tabs by spaces.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk/src/waeup/kofa/async.py

    r9792 r11704  
    4949        zc.async.local.getQueue())
    5050    while True:
    51         if time.time() > end:
    52             break
    53         time.sleep(1)
     51        if time.time() > end:
     52            break
     53        time.sleep(1)
    5454        percent = (time.time() - start) * 100.0 / duration
    5555        if percent > 100.0:
     
    5757        print "MyJob percent: ", percent
    5858        zc.async.local.setLiveAnnotation('percent', percent)
    59         print "MyJob does something at %s of %s" % (
     59        print "MyJob does something at %s of %s" % (
    6060            time.time() - start, duration)
    6161        print "MyJob's annotations: %r" % dict(myjob.annotations)
Note: See TracChangeset for help on using the changeset viewer.