I got the following problem in Python code.
The error is:
Traceback (most recent call last): File "cmd.py", line 16, in <module>
    func(b="{cmd} is entered ...") # Error here
File "cmd.py", line 5, in func
    exceptMsg = b.format(errStr=errStr, debugStr=debugStr)
KeyError: 'cmd'
The code:
import re
def func(errStr = "A string", b = "{errStr}\n{debugStr}"):
    debugStr = "Debug string"
    exceptMsg = b.format(errStr=errStr, debugStr=debugStr)
    raise ValueError(exceptMsg)
try:
    '''
    Case 1: If user invokes func() like below, error produced.
    Possible explanation: Paramter b of func() is looking keyword   
    'errStr' further down in func() body, but I am passing it keyword
    'cmd' instead. What to change to make the code work?
    '''
    #cmd = "A crazy string"             # Comment, make code pass 
    #func(b="{cmd} is entered ...")     # Error here
    # Case 2: If user invokes func() like below, OK.
    errStr = "A crazy string"
    func(b="{errStr} is entered")
except ValueError as e:
    err_msg_match = re.search('A string is entered:', e.message)
    print "Exception discovered and caught!"
1) If the function interface func() is preserved, what code to change?
2) If I must modify the function interface, how'd I go about making it a clean code change?
 
     
    