Mercurial > public > mercurial-scm > hg
comparison mercurial/bundlerepo.py @ 8225:46293a0c7e9f
updated license to be explicit about GPL version 2
author | Martin Geisler <mg@lazybytes.net> |
---|---|
date | Sun, 26 Apr 2009 01:08:54 +0200 |
parents | 4a4c7f6a5912 |
children | 8b2cd04a6e97 |
comparison
equal
deleted
inserted
replaced
8224:1075f5c1b3fa | 8225:46293a0c7e9f |
---|---|
4 This provides a read-only repository interface to bundles as if | 4 This provides a read-only repository interface to bundles as if |
5 they were part of the actual repository. | 5 they were part of the actual repository. |
6 | 6 |
7 Copyright 2006, 2007 Benoit Boissinot <bboissin@gmail.com> | 7 Copyright 2006, 2007 Benoit Boissinot <bboissin@gmail.com> |
8 | 8 |
9 This software may be used and distributed according to the terms | 9 This software may be used and distributed according to the terms of the |
10 of the GNU General Public License, incorporated herein by reference. | 10 GNU General Public License version 2, incorporated herein by reference. |
11 """ | 11 """ |
12 | 12 |
13 from node import nullid | 13 from node import nullid |
14 from i18n import _ | 14 from i18n import _ |
15 import changegroup, util, os, struct, bz2, zlib, tempfile, shutil, mdiff | 15 import changegroup, util, os, struct, bz2, zlib, tempfile, shutil, mdiff |