From 8f9dde931f2312cf8508e56adbcbbb6274535f66 Mon Sep 17 00:00:00 2001 From: Thomas Leonard Date: Sun, 2 Oct 2011 09:58:54 +0100 Subject: [PATCH] Fixed '0alias --manpage' for aliases using the default command Reported by Tim Cuthbertson. --- 0alias | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/0alias b/0alias index c50e83f..a161c29 100755 --- a/0alias +++ b/0alias @@ -121,7 +121,7 @@ if options.resolve: sys.exit(0) if options.manpage: - sels = helpers.ensure_cached(interface_uri, command = command) + sels = helpers.ensure_cached(interface_uri, command = command or 'run') if not sels: # Cancelled by user sys.exit(1) -- 2.11.4.GIT