search for: baseexcept

Displaying 7 results from an estimated 7 matches for "baseexcept".

2012 Nov 03
1
Provision Samba4 on Macosx snow leopard
...isk services" Ignoring unknown parameter "enable disk services" Unknown parameter encountered: "enable print services" Ignoring unknown parameter "enable print services" /usr/local/samba/lib/python2.6/site-packages/samba/netcmd/__init__.py:229: DeprecationWarning: BaseException.message has been deprecated as of Python 2.6 self.message = message /usr/local/samba/lib/python2.6/site-packages/samba/netcmd/__init__.py:97: DeprecationWarning: BaseException.message has been deprecated as of Python 2.6 message = e.message ERROR(<class 'samba.provision.ProvisioningEr...
2014 Jun 04
1
Fwd: [nut] PyNUT: Fix error when raising without an Exception. (#128)
...#128) > Date: June 3, 2014 3:34:00 PM EDT > Raising without a valid exception is invalid: > > >>> raise > Traceback (most recent call last): > File "<stdin>", line 1, in <module> > TypeError: exceptions must be old-style classes or derived from BaseException, not NoneType > >>> raise Exception > Traceback (most recent call last): > File "<stdin>", line 1, in <module> > Exception > > Changing this to "raise Exception" fixes this problem. > > You can merge this Pull Request by runnin...
2013 Mar 07
4
[Gluster-devel] glusterfs-3.4.0alpha2 released
RPM: http://bits.gluster.org/pub/gluster/glusterfs/3.4.0alpha2/ SRC: http://bits.gluster.org/pub/gluster/glusterfs/src/glusterfs-3.4.0alpha2.tar.gz This release is made off jenkins-release-19 -- Gluster Build System _______________________________________________ Gluster-devel mailing list Gluster-devel at nongnu.org https://lists.nongnu.org/mailman/listinfo/gluster-devel
2018 Jun 25
1
Re: [PATCH v2 2/2] v2v: -o rhv-upload: Use Unix domain socket to access imageio (RHBZ#1588088).
...e except should be used only in one case, when you do: try: ... except: cleanup raise If you don't raise, you should use Exception. Otherwise you will swallow KeyboardInterrupt, SystemExit, and GeneratorExit and any other user defined exceptions inheriting from BaseException. Also it will be easier to maintain this if this will be in a separate function like: def find_host(): read hardware id or return None... get hosts from engine or return None... return types.Host(host.id) > + > # Get a reference to the transfer service. > trans...
2010 Jun 09
0
Bug#585371: xen-utils-3.4: Python string exceptions no more allowed in Python 2.6
...(most recent call last): File "<string>", line 1, in <module> eggs $ python2.6 -c "raise 'eggs'" Traceback (most recent call last): File "<string>", line 1, in <module> TypeError: exceptions must be old-style classes or derived from BaseException, not str Since 2.6 is the planned default version for the upcoming new Debian stable release, there are chances your package may be affected by this change. We are not sure your package is impacted, since the exception raise can be in a dead or very rare branch of the code, and so simply never...
2010 Jun 09
0
Bug#585372: xen-utils-4.0: Python string exceptions no more allowed in Python 2.6
...(most recent call last): File "<string>", line 1, in <module> eggs $ python2.6 -c "raise 'eggs'" Traceback (most recent call last): File "<string>", line 1, in <module> TypeError: exceptions must be old-style classes or derived from BaseException, not str Since 2.6 is the planned default version for the upcoming new Debian stable release, there are chances your package may be affected by this change. We are not sure your package is impacted, since the exception raise can be in a dead or very rare branch of the code, and so simply never...
2018 Jun 22
4
v2v: -o rhv-upload: Use Unix domain socket to access imageio (RHBZ#1588088).
v1 was here: https://www.redhat.com/archives/libguestfs/2018-June/msg00099.html v2: - Just fixes the two problems noted in the review of the previous version. Rich.