Prechádzať zdrojové kódy

Bug fix with display & format function

Steve L. Nyemba 8 rokov pred
rodič
commit
59c0d0e4a4
1 zmenil súbory, kde vykonal 1 pridanie a 1 odobranie
  1. 1 1
      src/monitor.py

+ 1 - 1
src/monitor.py

@@ -31,7 +31,7 @@ class Analysis:
 	def getName(self):
 		return self.__class__.__name__
 	def format(self,text):
-		return re.sub('([0-9]+[a-zA-Z]*)|[^a-zA-Z\s:]',' ',text).strip()
+		return re.sub('([0-9]+[a-zA-Z]*)|[^a-zA-Z\s:]',' ',str(text)).strip()
 		
 
 """