# HG changeset patch # User Thomas Arendsen Hein # Date 1200949244 -3600 # Node ID a8dbfa1802cd0ce25976d8eaf508c971ace72363 # Parent b6deda0f69fa7185fa8f47864237c25e95eb1b6e Fix double import of 're'. diff -r b6deda0f69fa -r a8dbfa1802cd mercurial/util.py --- a/mercurial/util.py Mon Jan 21 21:44:16 2008 +0100 +++ b/mercurial/util.py Mon Jan 21 22:00:44 2008 +0100 @@ -15,7 +15,7 @@ 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