changeset 6070:5fd126d1adf8

keyword: declare globals in a more compact way
author Christian Ebert <blacktrash@gmx.net>
date Sat, 09 Feb 2008 22:50:53 +0100
parents 212bfb5c50e1
children 127c973e4499
files hgext/keyword.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/hgext/keyword.py	Sat Feb 09 22:37:51 2008 +0100
+++ b/hgext/keyword.py	Sat Feb 09 22:50:53 2008 +0100
@@ -99,7 +99,7 @@
     return time.strftime('%Y/%m/%d %H:%M:%S', time.gmtime(date[0]))
 
 
-_kwtemplater, _cmd, _cmdoptions = None, None, None
+_kwtemplater = _cmd = _cmdoptions = None
  
 # store originals of monkeypatches
 _patchfile_init = patch.patchfile.__init__