Skip to content

Commit

Permalink
Better process name substitution.
Browse files Browse the repository at this point in the history
  • Loading branch information
mdomlop committed Mar 10, 2019
1 parent 9d1f929 commit a36c584
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/snapman.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import setproctitle
import Snapman.functions
from Snapman.args import args
from Snapman.quit import clean_exit
from Snapman.quit import * # include os, sys


def main():
Expand Down Expand Up @@ -46,6 +46,6 @@ def main():


if __name__ == '__main__':
setproctitle.setproctitle('snapman')
setproctitle.setproctitle(' '.join(sys.argv))
main()
clean_exit()

0 comments on commit a36c584

Please sign in to comment.