diff options
| -rwxr-xr-x | cmd2.py | 2 | ||||
| -rw-r--r-- | setup.py | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -109,7 +109,7 @@ else: xclipproc = subprocess.Popen('xclip -o -sel clip', shell=True, stdout=subprocess.PIPE, stdin=subprocess.PIPE)
if xclipproc.stdout.read() == teststring:
can_clip = True
- except (subprocess.CalledProcessError, OSError):
+ except (subprocess.CalledProcessError, OSError, IOError):
pass
if can_clip:
def getPasteBuffer():
@@ -3,7 +3,7 @@ from setuptools import setup, find_packages setup( name="cmd2", - version="0.3.4", + version="0.3.4.1", py_modules = ['cmd2','flagReader','bootstrap'], # metadata for upload to PyPI |
