scripts/dtrx

branch
trunk
changeset 121
957d19158b7e
parent 117
c43771363c6f
child 123
8570c14304bb
equal deleted inserted replaced
120:0b13df37c884 121:957d19158b7e
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*- 2 # -*- coding: utf-8 -*-
3 # 3 #
4 # dtrx -- Intelligently extract various archive types. 4 # dtrx -- Intelligently extract various archive types.
5 # Copyright © 2006, 2007, 2008 Brett Smith <brettcsmith@brettcsmith.org> 5 # Copyright © 2006-2009 Brett Smith <brettcsmith@brettcsmith.org>
6 # Copyright © 2008 Peter Kelemen <Peter.Kelemen@gmail.com> 6 # Copyright © 2008 Peter Kelemen <Peter.Kelemen@gmail.com>
7 # 7 #
8 # This program is free software; you can redistribute it and/or modify it 8 # This program is free software; you can redistribute it and/or modify it
9 # under the terms of the GNU General Public License as published by the 9 # under the terms of the GNU General Public License as published by the
10 # Free Software Foundation; either version 3 of the License, or (at your 10 # Free Software Foundation; either version 3 of the License, or (at your
42 try: 42 try:
43 set 43 set
44 except NameError: 44 except NameError:
45 from sets import Set as set 45 from sets import Set as set
46 46
47 VERSION = "6.4" 47 VERSION = "6.5"
48 VERSION_BANNER = """dtrx version %s 48 VERSION_BANNER = """dtrx version %s
49 Copyright © 2006, 2007, 2008 Brett Smith <brettcsmith@brettcsmith.org> 49 Copyright © 2006-2009 Brett Smith <brettcsmith@brettcsmith.org>
50 Copyright © 2008 Peter Kelemen <Peter.Kelemen@gmail.com> 50 Copyright © 2008 Peter Kelemen <Peter.Kelemen@gmail.com>
51 51
52 This program is free software; you can redistribute it and/or modify it 52 This program is free software; you can redistribute it and/or modify it
53 under the terms of the GNU General Public License as published by the 53 under the terms of the GNU General Public License as published by the
54 Free Software Foundation; either version 3 of the License, or (at your 54 Free Software Foundation; either version 3 of the License, or (at your

mercurial