Mercurial > public > mercurial-scm > hg-stable
comparison mercurial/util.py @ 8257:e745063b94dd
Fix missing import from e68e149f4d44 merge
author | Patrick Mezard <pmezard@gmail.com> |
---|---|
date | Thu, 30 Apr 2009 08:38:20 +0200 |
parents | e68e149f4d44 |
children | 0b02d98d44d0 |
comparison
equal
deleted
inserted
replaced
8256:e68e149f4d44 | 8257:e745063b94dd |
---|---|
13 hide platform-specific details from the core. | 13 hide platform-specific details from the core. |
14 """ | 14 """ |
15 | 15 |
16 from i18n import _ | 16 from i18n import _ |
17 import cStringIO, errno, re, shutil, sys, tempfile, traceback, error | 17 import cStringIO, errno, re, shutil, sys, tempfile, traceback, error |
18 import os, stat, threading, time, calendar, glob, osutil | 18 import os, stat, threading, time, calendar, glob, osutil, random |
19 import imp | 19 import imp |
20 | 20 |
21 # Python compatibility | 21 # Python compatibility |
22 | 22 |
23 _md5 = None | 23 _md5 = None |