~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to ivle/console.py

  • Committer: William Grant
  • Date: 2009-05-18 12:13:44 UTC
  • Revision ID: grantw@unimelb.edu.au-20090518121344-m69gxcfqwoeirtru
Fix make_path_segments' docstring.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 
24
24
import errno
25
25
import cPickle
26
 
import md5
 
26
import hashlib
27
27
import os
28
28
import random
29
29
import socket
33
33
import cjson
34
34
 
35
35
import ivle.conf
36
 
from ivle import (chat, util)
 
36
from ivle import chat
37
37
 
38
38
# Outside Jail
39
39
trampoline_path = os.path.join(ivle.conf.lib_path, "trampoline")
154
154
 
155
155
        # Create magic
156
156
        # TODO
157
 
        self.magic = md5.new(uuid.uuid4().bytes).digest().encode('hex')
 
157
        self.magic = hashlib.md5(uuid.uuid4().bytes).hexdigest()
158
158
 
159
159
        # Try to find a free port on the server.
160
160
        # Just try some random ports in the range [3000,8000)