Remove dot twiddling on display
authorMark Tearle <[email protected]>
Mon, 6 Apr 2015 08:44:22 +0000 (16:44 +0800)
committerMark Tearle <[email protected]>
Mon, 6 Apr 2015 09:42:13 +0000 (17:42 +0800)
VendServer/VendingMachine.py

index e5a0251..4f4b674 100644 (file)
@@ -162,7 +162,6 @@ class VendingMachine:
        def display(self, string):
                if len(string) > 10:
                        string = string[0:10]
-               string = re.sub('(.)\.', lambda match: '.'+match.group(1), string)
                self.wfh.write('D'+string+'\n')
                (code, string) = self.get_response()
                return (code == '300', code, string)

UCC git Repository :: git.ucc.asn.au