|
@@ -10,8 +10,8 @@ class BasicDisplay():
|
|
print('|', title, '|')
|
|
print('|', title, '|')
|
|
print(bar)
|
|
print(bar)
|
|
|
|
|
|
- def error(self, message):
|
|
|
|
- print('ERROR :', message)
|
|
|
|
|
|
+ def error(self, *message):
|
|
|
|
+ print('ERROR :', *message)
|
|
|
|
|
|
def product(self, p):
|
|
def product(self, p):
|
|
print(p.id ,':', p.name)
|
|
print(p.id ,':', p.name)
|