From a3a6c123f702f84b5b0036af5f574ceae2e8af53 Mon Sep 17 00:00:00 2001 From: Denis Sachkov Date: Thu, 9 Feb 2017 14:31:29 +0300 Subject: [PATCH] Removed default value --- smartlog.pyw | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/smartlog.pyw b/smartlog.pyw index 0ccf3dc..8feaca7 100644 --- a/smartlog.pyw +++ b/smartlog.pyw @@ -38,7 +38,7 @@ parser.add_argument("--start_clean", default=False, action='store_const', const= help="executes clean command on startup.") parser.add_argument("--command_clean", default="adb logcat -c", help="specifies clean command.") -parser.add_argument("--pid_lookup", default="oxygine init", help="specifies string for looking process id.") +parser.add_argument("--pid_lookup", default="", help="specifies string for looking process id.") parser.add_argument("--pid_mask", default="\((.*?)\)", help="specifies regex to searching pid in a text line.") parser.add_argument("--file", default="", help="specifies log file to read.")