Your message dated Sat, 20 Feb 2016 15:58:29 +0000
with message-id <[email protected]>
and subject line Fixed in 0.6.8 without mention in the changelog
has caused the Debian Bug report #812072,
regarding module 'subprocess' has no attribute 'mswindows'
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
812072: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=812072
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: python3-cmd2
Version: 0.6.7-2
Severity: grave
Hi,
When using cmd2 in the unit test suite of python-cliff, I get:
File
"/home/zigo/sources/openstack/liberty/python-cliff/build-area/python-cliff-1.15.0/cliff/interactive.py",
line 10, in <module>
import cmd2
File "/usr/lib/python3/dist-packages/cmd2.py", line 181, in <module>
if subprocess.mswindows:
AttributeError: module 'subprocess' has no attribute 'mswindows'
Obviously, I'm not running mswindows... :)
Changing the line 181 from:
if subprocess.mswindows:
to:
if hasattr(subprocess, 'mswindows'):
fixed it. There must be so many ways to fix it anyway (we just need to
neutralize the code for MSWin...).
Cheers,
Thomas Goirand (zigo)
--- End Message ---
--- Begin Message ---
Version: 0.6.8-1
The upstream change
https://bitbucket.org/catherinedevlin/cmd2/issues/18/python-35-renames-subprocessmswindows
includes a fix for 812072.
--
Neil Williams
=============
http://www.linux.codehelp.co.uk/
pgpzSHfR5_oWz.pgp
Description: OpenPGP digital signature
--- End Message ---