From 12be18b239cb95a8114ad8b6595788dad07deda3 Mon Sep 17 00:00:00 2001 From: jcromero Date: Sat, 18 Apr 2020 21:11:03 +0200 Subject: [PATCH] Fix typo --- dex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dex b/dex index be410f4..2df2b04 100755 --- a/dex +++ b/dex @@ -776,7 +776,7 @@ if __name__ == '__main__': run.add_argument("-w", "--wait", action="store_true", dest="wait", help="block until the program exits") create = parser.add_argument_group('create') - create.add_argument("-c", "--create", nargs='+', dest="create", help="create a DesktopEntry file for the given program. If a second argument is provided it's taken as output filename or written to stdout (filname: -). By default a new file with the postfix .desktop is created") + create.add_argument("-c", "--create", nargs='+', dest="create", help="create a DesktopEntry file for the given program. If a second argument is provided it's taken as output filename or written to stdout (filename: -). By default a new file with the postfix .desktop is created") create.add_argument("-t", "--target-directory", nargs=1, dest="targetdir", help="create files in target directory") parser.set_defaults(func=_run, term="x-terminal-emulator", wait=False, dryrun=False, test=False, autostart=False, verbose=False)