diff rhodecode/lib/utils.py @ 3941:3208aaefc9ca beta

Moved all Mercurial imports into hgcompat from vcs
author Marcin Kuzminski <marcin@python-works.com>
date Mon, 03 Jun 2013 23:54:52 +0200
parents 7aa0ff5b4e09
children 5293d4bbb1ea
line wrap: on
line diff
--- a/rhodecode/lib/utils.py	Sat May 25 16:01:41 2013 +0000
+++ b/rhodecode/lib/utils.py	Mon Jun 03 23:54:52 2013 +0200
@@ -39,13 +39,12 @@
 
 from paste.script.command import Command, BadCommand
 
-from mercurial import ui, config
-
 from webhelpers.text import collapse, remove_formatting, strip_tags
 
 from rhodecode.lib.vcs import get_backend
 from rhodecode.lib.vcs.backends.base import BaseChangeset
 from rhodecode.lib.vcs.utils.lazy import LazyProperty
+from rhodecode.lib.vcs.utils.hgcompat import ui, config
 from rhodecode.lib.vcs.utils.helpers import get_scm
 from rhodecode.lib.vcs.exceptions import VCSError