# HG changeset patch # User Yuya Nishihara # Date 2014-05-02 09:24:10 # Node ID be561a6221000142b68aaacf049905435fb1c082 # Parent c58aa73bf0b943275edd805d738e29b7e3dffff8 factotum: initialize global variables to suppress pyflakes warning diff --git a/hgext/factotum.py b/hgext/factotum.py --- a/hgext/factotum.py +++ b/hgext/factotum.py @@ -52,6 +52,8 @@ import os, urllib2 ERRMAX = 128 +_executable = _mountpoint = _service = None + def auth_getkey(self, params): if not self.ui.interactive(): raise util.Abort(_('factotum not interactive'))