Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
Fix launcher log message (#4762)
Browse files Browse the repository at this point in the history
  • Loading branch information
kj-ki authored and piiswrong committed Jan 22, 2017
1 parent 04be299 commit 5f3ae0e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion example/reinforcement-learning/a3c/launcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def mthread_submit(nworker, nserver, envs):
pscmd=(' '.join(args.command)))

def signal_handler(signal, frame):
logging.info('Stop luancher')
logging.info('Stop launcher')
sys.exit(0)

if __name__ == '__main__':
Expand Down
2 changes: 1 addition & 1 deletion tools/launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def main():
raise RuntimeError('Unknown submission cluster type %s' % args.cluster)

def signal_handler(signal, frame):
logging.info('Stop luancher')
logging.info('Stop launcher')
sys.exit(0)

if __name__ == '__main__':
Expand Down

0 comments on commit 5f3ae0e

Please sign in to comment.