Repository issues

This commit is contained in:
Vincent Jacques
2012-02-24 14:57:26 +00:00
parent f9a882fcae
commit ce2135c961
5 changed files with 43 additions and 9 deletions
+4 -1
View File
@@ -38,7 +38,10 @@ class ComplexAttribute:
self.__type = type
def getValueFromRawValue( self, obj, rawValue ):
return self.__type( obj._github, rawValue, lazy = True )
if rawValue is None:
return None
else:
return self.__type( obj._github, rawValue, lazy = True )
def updateAttributes( self, obj ):
attributes = obj._github._dataRequest( "GET", obj._baseUrl, None, None )