factotum: initialize global variables to suppress pyflakes warning
authorYuya Nishihara <yuya@tcha.org>
Fri, 02 May 2014 18:24:10 +0900
changeset 21228 be561a622100
parent 21225 c58aa73bf0b9
child 21230 d882a8786ddf
factotum: initialize global variables to suppress pyflakes warning
hgext/factotum.py
--- a/hgext/factotum.py	Mon May 05 13:42:08 2014 -0500
+++ b/hgext/factotum.py	Fri May 02 18:24:10 2014 +0900
@@ -52,6 +52,8 @@
 
 ERRMAX = 128
 
+_executable = _mountpoint = _service = None
+
 def auth_getkey(self, params):
     if not self.ui.interactive():
         raise util.Abort(_('factotum not interactive'))