~roadmr/canonical-identity-provider/fix-deprecation-warnings-1

« back to all changes in this revision

Viewing changes to src/identityprovider/management/commands/runserver_plus.py

  • Committer: Tom Wardill
  • Date: 2018-02-14 14:05:59 UTC
  • mfrom: (1602 work)
  • mto: (1597.1.44 django-1.10)
  • mto: This revision was merged to the branch mainline in revision 1603.
  • Revision ID: tom.wardill@canonical.com-20180214140559-ow5txzwy46nopws2
Merge flake8 changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
            from werkzeug.serving import WSGIRequestHandler
35
35
        except ImportError as e:
36
36
            raise e
37
 
        except:
 
37
        except Exception:
38
38
            msg = ("Werkzeug is required to use runserver_plus.  "
39
39
                   "Please visit http://werkzeug.pocoo.org/download")
40
40
            raise CommandError(msg)