comparison hgext/hgk.py @ 18816:7f7d5f8a8f15

hgk: fix a pyflakes error
author Bryan O'Sullivan <bryano@fb.com>
date Mon, 25 Mar 2013 16:57:36 -0700
parents cf72fd8b3072
children 8d354d58147c
comparison
equal deleted inserted replaced
18815:a18919de61e5 18816:7f7d5f8a8f15
33 Revisions context menu will now display additional entries to fire 33 Revisions context menu will now display additional entries to fire
34 vdiff on hovered and selected revisions. 34 vdiff on hovered and selected revisions.
35 ''' 35 '''
36 36
37 import os 37 import os
38 from mercurial import commands, util, patch, revlog, scmutil, phases 38 from mercurial import commands, util, patch, revlog, scmutil
39 from mercurial.node import nullid, nullrev, short 39 from mercurial.node import nullid, nullrev, short
40 from mercurial.i18n import _ 40 from mercurial.i18n import _
41 41
42 testedwith = 'internal' 42 testedwith = 'internal'
43 43