Browse Source

Fix error display with multiple arguments

Jovian (Netbook) 6 năm trước cách đây
mục cha
commit
7b44340818
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      basic_display.py

+ 2 - 2
basic_display.py

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