[__main__] set argv[0] to "maestral"

This commit is contained in:
Sam Schott 2020-10-24 12:39:12 +01:00
parent ec52f044b2
commit f2238287d9

View File

@ -1,8 +1,12 @@
# -*- coding: utf-8 -*-
# system imports
import sys
# local imports
from maestral.cli import main
if __name__ == "__main__":
sys.argv[0] = "maestral"
main()