diff options
author | 2011-11-01 12:39:49 +0100 | |
---|---|---|
committer | 2011-11-01 12:39:49 +0100 | |
commit | 51d258bf093e8885ea4cdfb6e162077f1961dd0c (patch) | |
tree | b67129721e494619314af9ed606597118dfb204f /github3/handlers/user.py | |
parent | Merge branch 'handlers' into develop (diff) | |
download | python-github3-51d258bf093e8885ea4cdfb6e162077f1961dd0c.tar.xz python-github3-51d258bf093e8885ea4cdfb6e162077f1961dd0c.zip |
Fix bug. Import own exceptions
Diffstat (limited to 'github3/handlers/user.py')
-rw-r--r-- | github3/handlers/user.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/github3/handlers/user.py b/github3/handlers/user.py index c59607d..09ea031 100644 --- a/github3/handlers/user.py +++ b/github3/handlers/user.py @@ -5,6 +5,7 @@ from .base import Handler import github3.models as models +import github3.exceptions as exceptions class User(Handler): """ Handler to query public user api """ |