From 0c3238d47a98fa9bc8995516fd4b8f31afb0602c Mon Sep 17 00:00:00 2001 From: chrys Date: Sun, 13 Aug 2017 23:14:13 +0200 Subject: [PATCH] add missing parameter --- src/fenrir/commands/commands/attribute_cursor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fenrir/commands/commands/attribute_cursor.py b/src/fenrir/commands/commands/attribute_cursor.py index a843e4c0..6b8614f4 100644 --- a/src/fenrir/commands/commands/attribute_cursor.py +++ b/src/fenrir/commands/commands/attribute_cursor.py @@ -19,7 +19,7 @@ class command(): cursorPos = self.env['runtime']['cursorManager'].getReviewOrTextCursor() attributes = self.env['screen']['newContentAttrib'][cursorPos['x']][cursorPos['y']] attributeFormatString = self.env['runtime']['settingsManager'].getSetting('general', 'attributeFormatString') - attributeFormatString = self.env['runtime']['screenManager'].formatAttributes(attributeFormatString) + attributeFormatString = self.env['runtime']['screenManager'].formatAttributes(attributes, attributeFormatString) self.env['runtime']['outputManager'].presentText(attributeFormatString, soundIcon='', interrupt=True) def setCallback(self, callback): pass