Browse Source

*** empty log message ***

Joe Shochet 25 years ago
parent
commit
b7718cc0f2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      direct/src/ffi/FFIExternalObject.py

+ 1 - 1
direct/src/ffi/FFIExternalObject.py

@@ -172,7 +172,7 @@ class FFIExternalObject:
 
     def __repr__(self):
         # Print this info for all objects
-        baseRepr = ('<' + self.__class__.__name__ + ' instance at C++ pointer: ' + `self.this` + '>')
+        baseRepr = ('[' + self.__class__.__name__ + ' at: ' + `self.this` + ']')
         # Lots of Panda classes have an write or output function defined that takes an Ostream
         # We create a LineStream for the write or output function to write to, then we extract
         # the string out of it and return it as our repr