Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8.1, 0.8.2, and 0.8.3

debugthg: accept 1 from command line for debugging all

Changeset a325afde6ba9

Parent 8ad7a9971eeb

by Simon Heimberg

Changes to one file · Browse files at a325afde6ba9 Showing diff from parent 8ad7a9971eeb Diff from another changeset...

 
18
19
20
21
 
22
23
24
 
18
19
20
 
21
22
23
24
@@ -18,7 +18,7 @@
 except ImportError:   import os   debugging = os.environ.get("DEBUG_THG", "") - if debugging.lower() in (1, "true"): + if debugging.lower() in ("1", "true"):   debugging = True    def debugf_No(str, args=None, level=''):