1
0
mirror of https://github.com/mnaberez/py65.git synced 2024-06-28 18:29:28 +00:00

Use the same conventions as the rest of the file

This commit is contained in:
Mike Naberezny 2012-01-06 19:21:03 -08:00
parent f06e70703f
commit 8848cb901c

View File

@ -43,9 +43,9 @@ class Monitor(cmd.Cmd):
self._update_prompt()
self._add_shortcuts()
cmd.Cmd.__init__(self, completekey, stdin, stdout)
self.parseArgs(argv)
self._parse_args(argv)
def parseArgs(self, argv):
def _parse_args(self, argv):
try:
options, args = getopt.getopt(argv[1:], 'hm:l:r:g:',
['help', 'mpu=', 'load=', 'rom=', 'goto='])