diff options
author | Vincenzo Maffione <v.maffione@gmail.com> | 2017-04-19 19:42:29 +0200 |
---|---|---|
committer | Vincenzo Maffione <v.maffione@gmail.com> | 2017-04-19 19:42:29 +0200 |
commit | 706d2e6216154f9e9e80ca6d9b1c32f1ba4c46ab (patch) | |
tree | 635f441897a23ece1543dafa3a0934ee143c84b2 | |
parent | 5cefc8e09db7092bd1d0f8a243bf4ae84a72597f (diff) | |
download | rumba-706d2e6216154f9e9e80ca6d9b1c32f1ba4c46ab.tar.gz rumba-706d2e6216154f9e9e80ca6d9b1c32f1ba4c46ab.zip |
prototypes: irati: more readable output on enroll messages
-rw-r--r-- | rumba/prototypes/irati.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rumba/prototypes/irati.py b/rumba/prototypes/irati.py index 7cb622a..0d40580 100644 --- a/rumba/prototypes/irati.py +++ b/rumba/prototypes/irati.py @@ -167,9 +167,9 @@ class Experiment(mod.Experiment): print( 'I am going to enroll %s to DIF %s against neighbor %s,' ' through lower DIF %s' - % (e['enrollee'], + % (e['enrollee'].name, e['dif'].name, - e['enroller'], + e['enroller'].name, e['lower_dif'].name)) subprocess.check_call('sleep 2'. split()) # Important! |