diff rhodecode/controllers/branches.py @ 2348:a07e04ef7bb4 codereview

Implemented basic compare view(for pull requests) for mercurial.
author Marcin Kuzminski <marcin@python-works.com>
date Sun, 27 May 2012 23:29:18 +0200
parents 8ecfed1d8f8b
children 63e58ef80ef1 b950b884ab87
line wrap: on
line diff
--- a/rhodecode/controllers/branches.py	Sun May 27 23:28:22 2012 +0200
+++ b/rhodecode/controllers/branches.py	Sun May 27 23:29:18 2012 +0200
@@ -24,14 +24,15 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
 import logging
+import binascii
 
 from pylons import tmpl_context as c
-import binascii
 
 from rhodecode.lib.auth import LoginRequired, HasRepoPermissionAnyDecorator
 from rhodecode.lib.base import BaseRepoController, render
 from rhodecode.lib.compat import OrderedDict
 from rhodecode.lib.utils2 import safe_unicode
+
 log = logging.getLogger(__name__)