# HG changeset patch # User Thomas Arendsen Hein # Date 2008-01-21 21:00:44 # Node ID a8dbfa1802cd0ce25976d8eaf508c971ace72363 # Parent b6deda0f69fa7185fa8f47864237c25e95eb1b6e Fix double import of 're'. diff --git a/mercurial/util.py b/mercurial/util.py --- a/mercurial/util.py +++ b/mercurial/util.py @@ -15,7 +15,7 @@ platform-specific details from the core. from i18n import _ import cStringIO, errno, getpass, popen2, re, shutil, sys, tempfile, strutil import os, stat, threading, time, calendar, ConfigParser, locale, glob, osutil -import re, urlparse +import urlparse try: set = set