Skip to content

Commit

Permalink
Update test_subset.py
Browse files Browse the repository at this point in the history
  • Loading branch information
pfernique committed Aug 26, 2016
1 parent 933193d commit d418936
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/test_subset.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import subprocess
import sys
import __builtin__
import sys

import autowig

Expand Down Expand Up @@ -36,7 +37,8 @@ def __call__(**context):
def wrapper(f):
@wraps(f)
def execfunc(self, *args, **kwargs):
print('.')
sys.stdout.write('.')
sys.stdout.flush()
return f(self, *args, **kwargs)
return execfunc

Expand Down

0 comments on commit d418936

Please sign in to comment.