diff options
author | dhuth <derickhuth@gmail.com> | 2014-10-09 11:40:37 -0600 |
---|---|---|
committer | dhuth <derickhuth@gmail.com> | 2014-10-09 11:40:37 -0600 |
commit | c41fd9cb5f47695077165fb769e1754f7886517e (patch) | |
tree | a8425dba2af72a5d50e9d936b5082430a98be592 /test-chill/testchill/util.py | |
parent | 8c646f24570079eac53e58fcf42d0d4fbc437ee3 (diff) | |
download | chill-c41fd9cb5f47695077165fb769e1754f7886517e.tar.gz chill-c41fd9cb5f47695077165fb769e1754f7886517e.tar.bz2 chill-c41fd9cb5f47695077165fb769e1754f7886517e.zip |
Small changes to Makefile and test-chill
Diffstat (limited to 'test-chill/testchill/util.py')
-rw-r--r-- | test-chill/testchill/util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test-chill/testchill/util.py b/test-chill/testchill/util.py index cfb61dd..266a94d 100644 --- a/test-chill/testchill/util.py +++ b/test-chill/testchill/util.py @@ -138,7 +138,7 @@ def callonce(func): globals()[pred_name] = True return func(*args, **kwargs) else: - raise Exception + raise Exception('{} was invoked multiple times.'.format(func.__name___)) return wrapper def isdiff(strone, strtwo): |