nikhilm / cq

Cq ( Commit Queue ) is a tool to work offline on a Mercurial clone of a Subversion working copy. All changes done in the local Mercurial repository can be pushed to the Subversion repository when the network is available. Cq is in a very early stage, see DESIGN ( incomplete ) for details

Clone this repository (size: 70.1 KB): HTTPS / SSH
$ hg clone http://bitbucket.org/nikhilm/cq/
commit 93: ea8bd3e5c18b
parent 92: 23155ea65aff
branch: default
Added cqerror() which always writes out
Nikhil Marathe / nikhilm
8 months ago

Changed (Δ40 bytes):

raw changeset »

src/cq/util.py (4 lines added, 1 lines removed)

Up to file-list src/cq/util.py:

@@ -58,4 +58,7 @@ def _verboseon(o, s, v, p):
58
58
59
59
def cqmsg(*args):
60
60
    if verbose:
61
        sys.stderr.write('Cq: %s%s'%(' '.join(args), os.linesep))
61
        cqerror(*args)
62
63
def cqerror(*args):
64
    sys.stderr.write('Cq: %s%s'%(' '.join(args), os.linesep))