From ba6d90aa7a07e3d1539f3003c1058186df0d2a5f Mon Sep 17 00:00:00 2001 From: akhilkpdasan Date: Sun, 19 Nov 2017 19:08:52 +0530 Subject: [PATCH] fixed docmentation for pyeval --- qutebrowser/misc/utilcmds.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/qutebrowser/misc/utilcmds.py b/qutebrowser/misc/utilcmds.py index 27365011d..6f6854e2a 100644 --- a/qutebrowser/misc/utilcmds.py +++ b/qutebrowser/misc/utilcmds.py @@ -234,13 +234,12 @@ def debug_pyeval(s, file=False, quiet=False): Args: s: The string to evaluate. - file: Interpret s as a path to file. + file: Interpret s as a path to file also implies --quiete. quiet: Don't show the output in a new tab. """ if file: quiet = True path = os.path.expanduser(s) - message.info(path) try: with open(path, 'r', encoding='utf-8') as f: s = f.read()