[Pkg-bazaar-commits] ./bzr/unstable r32: - Split commands into bzrlib.commands

mbp at sourcefrog.net mbp at sourcefrog.net
Fri Apr 10 07:25:46 UTC 2009


------------------------------------------------------------
revno: 32
committer: mbp at sourcefrog.net
timestamp: Sun 2005-03-13 16:38:53 +1100
message:
  - Split commands into bzrlib.commands
  - main bzr.py now very small
added:
  bzr.py
renamed:
  bzr.py => bzrlib/commands.py
-------------- next part --------------
=== added file 'bzr.py'
--- a/bzr.py	1970-01-01 00:00:00 +0000
+++ b/bzr.py	2005-03-13 05:38:53 +0000
@@ -0,0 +1,25 @@
+#! /usr/bin/python
+
+# Copyright (C) 2004, 2005 by Martin Pool
+# Copyright (C) 2005 by Canonical Ltd
+
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+
+import sys, bzrlib, bzrlib.commands
+
+
+if __name__ == '__main__':
+    sys.exit(bzrlib.commands.main(sys.argv))
+    

=== renamed file 'bzr.py' => 'bzrlib/commands.py'


More information about the Pkg-bazaar-commits mailing list