fix debug output

This commit is contained in:
Laura Klünder 2017-11-16 22:42:29 +01:00
parent f55bacddc9
commit d4236f96f8

View file

@ -125,7 +125,7 @@ class MapHistory:
if not data.size:
logging.info('data is empty, creating new map')
data = np.zeros(((maxy-miny), (maxx-minx)), dtype=np.uint16)
logging.info('data is empty, created new! shape=%s' % data.shape)
logging.info('data is empty, created new! shape=%s' % (data.shape, ))
self.x, self.y = minx, miny
else:
logging.info('resize?')