]> git.llucax.com Git - z.facultad/75.52/sercom.git/commitdiff
Sacar str() innecesario.
authorLeandro Lucarella <llucax@gmail.com>
Sun, 25 Feb 2007 23:54:00 +0000 (23:54 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Sun, 25 Feb 2007 23:54:00 +0000 (23:54 +0000)
=P

sercom/model.py

index e91c056522566e77763336f958ab4ad0cdde117c..f9ab5a950c9533290a08ad6384e06d1dd567c4ff 100644 (file)
@@ -161,7 +161,7 @@ class Curso(SQLObject, ByObject): #{{{
 
     def shortrepr(self):
         return '%s.%s.%s' \
-            % (self.anio, self.cuatrimestre, str(self.numero))
+            % (self.anio, self.cuatrimestre, self.numero)
 #}}}
 
 class Usuario(InheritableSQLObject, ByObject): #{{{