diff options
Diffstat (limited to 'libbe/command')
-rw-r--r-- | libbe/command/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbe/command/base.py b/libbe/command/base.py index 36769f1..f019450 100644 --- a/libbe/command/base.py +++ b/libbe/command/base.py @@ -183,7 +183,7 @@ class Option (CommandInput): if self.arg == None: assert self.callback != None, self.name return - assert self.callback == None, '%s: %s' (self.name, self.callback) + assert self.callback == None, '%s: %s' % (self.name, self.callback) assert self.arg.name == self.name, \ 'Name missmatch: %s != %s' % (self.arg.name, self.name) assert self.arg.optional == False, self.name |