Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9, 1.9.1, and 1.9.2

htmlui: use mult-char random tags

Changeset 6b1aa72b07ee

Parent 6c9ce121647d

by Steve Borho

Changes to one file · Browse files at 6b1aa72b07ee Showing diff from parent 6c9ce121647d Diff from another changeset...

 
5
6
7
8
 
9
10
11
12
13
14
15
16
 
 
17
18
19
 
5
6
7
 
8
9
10
11
12
13
14
 
 
15
16
17
18
19
@@ -5,15 +5,15 @@
 # This software may be used and distributed according to the terms of the  # GNU General Public License version 2, incorporated herein by reference.   -import os +import os, time    from mercurial import ui  from PyQt4 import QtCore  from tortoisehg.hgqt import qtlib  from tortoisehg.util import hglib   -BEGINTAG = '\033' -ENDTAG = '\032' +BEGINTAG = '\033' + str(time.time()) +ENDTAG = '\032' + str(time.time())    class htmlui(ui.ui):   def __init__(self, src=None):