Advertisement
infogulch

Untitled

Jul 26th, 2012
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.93 KB | None | 0 0
  1.         def on_line_build(self, points):
  2.             for x, y, z in points:
  3.                 self.quickbuild_block_build(x, y, z)
  4.             return connection.on_line_build(points)   #line 248
  5.        
  6. """
  7. <infogulch> /qbrecord
  8. Traceback (most recent call last):
  9.  File "..\pyspades\protocol.py", line 165, in update
  10.    self.data_received(peer, event.packet)
  11.  File "run.py", line 885, in data_received
  12.    ServerProtocol.data_received(self, peer, packet)
  13.  File "..\pyspades\protocol.py", line 117, in data_received
  14.    connection.loader_received(packet)
  15.  File "..\pyspades\server.py", line 568, in loader_received
  16.    self.on_line_build(points)
  17.  File "D:\Dropbox\Projects\pyspades\feature_server\scripts\quickbuild.py", line 248, in on_line_build
  18.    return connection.on_line_build(points)
  19. TypeError: unbound method on_line_build() must be called with TDMConnection instance as first argument (got list instance instead)
  20. """
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement