r46849 - pyflakes
hawkowl-TA+aISz0psMTMxyoc4vAAJOcrHinNvQL0E9HWUfgJXw@public.gmane.org
| Newsgroups | gmane.comp.python.twisted.commits |
|---|---|
| Message-ID | <[email protected]> |
Author: hawkowl
Date: Wed Feb 24 18:54:25 2016
New Revision: 46849
Modified:
branches/old-versionpy-8219/twisted/test/test_twisted.py
Log:
pyflakes
Modified: branches/old-versionpy-8219/twisted/test/test_twisted.py
==============================================================================
--- branches/old-versionpy-8219/twisted/test/test_twisted.py (original)
+++ branches/old-versionpy-8219/twisted/test/test_twisted.py Wed Feb 24 18:54:25 2016
@@ -663,8 +663,8 @@
"""
Former subprojects no longer have an importable C{_version.py}.
"""
- with self.assertRaises(AttributeError) as e:
- module = reflect.namedAny(
+ with self.assertRaises(AttributeError):
+ reflect.namedAny(
"twisted.{}._version".format(self.subproject))