From: Richard Mudgett Date: Wed, 31 Aug 2016 20:13:19 +0000 (-0500) Subject: sip_to_pjsip.py: Fix comment typo and tabs. X-Git-Tag: 13.12.0-rc1~71^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fchanges%2F92%2F3792%2F1;p=thirdparty%2Fasterisk.git sip_to_pjsip.py: Fix comment typo and tabs. Change-Id: If35174614545727817d329c60ba4456c028941b5 --- diff --git a/contrib/scripts/sip_to_pjsip/sip_to_pjsip.py b/contrib/scripts/sip_to_pjsip/sip_to_pjsip.py index 1a0d6a4806..d94939b716 100755 --- a/contrib/scripts/sip_to_pjsip/sip_to_pjsip.py +++ b/contrib/scripts/sip_to_pjsip/sip_to_pjsip.py @@ -17,7 +17,7 @@ PREFIX = 'pjsip_' def section_by_type(section, pjsip, type): """Finds a section based upon the given type, adding it if not found.""" def __find_dict(mdicts, key, val): - """Given a list of mult-dicts, return the multi-dict that contains + """Given a list of multi-dicts, return the multi-dict that contains the given key/value pair.""" def found(d): @@ -1181,7 +1181,7 @@ def cli_options(): """ global PREFIX usage = "usage: %prog [options] [input-file [output-file]]\n\n" \ - "Converts the chan_sip configuration input-file to the chan_pjsip output-file.\n"\ + "Converts the chan_sip configuration input-file to the chan_pjsip output-file.\n" \ "The input-file defaults to 'sip.conf'.\n" \ "The output-file defaults to 'pjsip.conf'." parser = optparse.OptionParser(usage=usage)