Skip to content

Commit 9c5206f

Browse files
committed
Further fixes for log message syntax errors
See #13
1 parent 67a9313 commit 9c5206f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pygccxml/declarations/class_declaration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -598,10 +598,10 @@ def find_noncopyable_vars(self):
598598
% self.decl_string)
599599
noncopyable_vars.append(mvar)
600600
if tt.is_class(no_const):
601-
logger.debug(message + " - class" % self.decl_string)
601+
logger.debug((message + " - class") % self.decl_string)
602602
noncopyable_vars.append(mvar)
603603
if tt.is_array(no_const):
604-
logger.debug(message + " - array" % self.decl_string)
604+
logger.debug((message + " - array") % self.decl_string)
605605
noncopyable_vars.append(mvar)
606606

607607
if tt.class_traits.is_my_case(type_):

0 commit comments

Comments
 (0)