Skip to content

Commit

Permalink
fix an analog bug
Browse files Browse the repository at this point in the history
  • Loading branch information
747929791 committed Feb 25, 2021
1 parent b1789b8 commit 55cd73b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion analysis/analyzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ def LogTrace(func):
if '--stdio' in sys.argv:
LogTrace.out=sys.stdout
else:
LogTrace.out=open('FuncTrace.log','w')
LogTrace.out=open('FuncTrace.log','w',errors='ignore')
LogTrace.FuncArgsList=[] #if func.name in this list, print args
print(inspect.getargspec(func))
@wraps(func)
Expand Down

0 comments on commit 55cd73b

Please sign in to comment.