Permalink
Browse files
plugin: fix print for impedance
- Loading branch information...
Showing
with
1 addition
and
1 deletion.
-
+1
−1
plugins/print.py
|
|
@@ -9,7 +9,7 @@ def __call__(self, sample): |
|
|
if sample:
|
|
|
# print impedance if supported
|
|
|
if self.imp_channels > 0:
|
|
|
- sample_string = "ID: %f\n%s\n%s\%s" %(sample.id, str(sample.channel_data)[1:-1], str(sample.aux_data)[1:-1], str(sample.imp_data)[1:-1])
|
|
|
+ sample_string = "ID: %f\n%s\n%s\n%s" %(sample.id, str(sample.channel_data)[1:-1], str(sample.aux_data)[1:-1], str(sample.imp_data)[1:-1])
|
|
|
else:
|
|
|
sample_string = "ID: %f\n%s\n%s" %(sample.id, str(sample.channel_data)[1:-1], str(sample.aux_data)[1:-1])
|
|
|
print "---------------------------------"
|
|
|
|
0 comments on commit
9fb9bfe