~ursinha/lp-qa-tools/bzr-tarmacland

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: John Arbash Meinel
  • Date: 2007-11-06 02:48:35 UTC
  • Revision ID: john@arbash-meinel.com-20071106024835-vdzn55wsylj6wdnh
Update copyright and version information.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005, 2006 by Canonical Ltd
 
1
# Copyright (C) 2005, 2006, 2007 by Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
22
22
from bzrlib.bzrdir import BzrDir
23
23
 
24
24
 
 
25
version_info = (0, 92, 0, 'dev', 0)
 
26
__version__ = '.'.join(str(v) for v in version_info)
 
27
 
 
28
 
25
29
class cmd_pqm_submit(Command):
26
30
    """Submit the parent tree to the pqm.
27
31