diff options
Diffstat (limited to 'aergia')
| -rwxr-xr-x | aergia/aergia.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/aergia/aergia.py b/aergia/aergia.py index 83cf0fa..b10c82b 100755 --- a/aergia/aergia.py +++ b/aergia/aergia.py @@ -251,7 +251,6 @@ class Aergia(object): ret = None while curr: frame = getattr(curr, 'cr_frame', None) - # print(frame) if frame and Aergia.should_trace(frame.f_code.co_filename): ret = frame curr = getattr(curr, 'cr_await', None) @@ -260,7 +259,7 @@ class Aergia(object): @staticmethod def should_trace(filename): '''Returns FALSE if filename is uninteresting to the user. - Don't depend on this.''' + Don't depend on this. It's good enough for testing.''' # FIXME Assume GuixSD. Makes filtering easy if '/gnu/store' in filename: return False |
