From b9b1defb8b0e5f60f0efeab602c7d46bb306392b Mon Sep 17 00:00:00 2001 From: Vincent Jacques Date: Sat, 25 Feb 2012 09:15:10 +0000 Subject: [PATCH] Reorganize --- github/GithubObject.py | 2 +- github/{ => ObjectCapacities}/TypePolicies.py | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename github/{ => ObjectCapacities}/TypePolicies.py (100%) diff --git a/github/GithubObject.py b/github/GithubObject.py index 8e7820eb..09c57615 100644 --- a/github/GithubObject.py +++ b/github/GithubObject.py @@ -3,7 +3,7 @@ import itertools import ObjectCapacities.ArgumentsChecker as ArgumentsChecker from ObjectCapacities.Basic import AttributeFromCallable, MethodFromCallable, InternalAttribute, SeveralAttributes from ObjectCapacities.List import ExternalListOfObjects, ListGetable, ElementCreatable, ElementGetable, ElementAddable, ElementRemovable, ElementHasable, ListAddable, ListSetable, ListDeletable -from TypePolicies import SimpleTypePolicy, ObjectTypePolicy +from ObjectCapacities.TypePolicies import SimpleTypePolicy, ObjectTypePolicy class BadGithubObjectException( Exception ): pass diff --git a/github/TypePolicies.py b/github/ObjectCapacities/TypePolicies.py similarity index 100% rename from github/TypePolicies.py rename to github/ObjectCapacities/TypePolicies.py