From 8d337bb7eef0204b052f2052cd8bdc2f1fdd613d Mon Sep 17 00:00:00 2001 From: catherine devlin Date: Wed, 20 Jul 2011 21:23:53 -0400 Subject: Python 3 installation instructions --- cmd2.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'cmd2.py') diff --git a/cmd2.py b/cmd2.py index bedae38..aebe618 100755 --- a/cmd2.py +++ b/cmd2.py @@ -221,6 +221,8 @@ else: can_clip = True except Exception: # hate a bare Exception call, but exception classes vary too much b/t stdlib versions pass + except Exception: + pass # something went wrong with xclip and we cannot use it if can_clip: def get_paste_buffer(): xclipproc = subprocess.Popen('xclip -o -sel clip', shell=True, stdout=subprocess.PIPE, stdin=subprocess.PIPE) -- cgit v1.2.1