Changeset 171
- Timestamp:
- 12/11/2004 11:35:14 PM (4 years ago)
- Files:
-
- 1 modified
-
trunk/plwm/inspect.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/plwm/inspect.py
r60 r171 1 # $Id: inspect.py,v 1. 7 2001-12-06 11:08:08 petliExp $1 # $Id: inspect.py,v 1.8 2004-12-12 05:35:14 mwm Exp $ 2 2 # 3 3 # inspect.py -- Allow inspection of PLWM internals … … 24 24 import traceback 25 25 import struct 26 import whrandom26 import random 27 27 import cStringIO 28 28 … … 76 76 77 77 addr, port = self.inspect_socket.getsockname() 78 self.inspect_cookie = whrandom.randint(0, 0x7ffffffe)78 self.inspect_cookie = random.randint(0, 0x7ffffffe) 79 79 80 80 self.default_screen.root.change_property(self.PLWM_INSPECT_SERVER,
