Removed fixup-python3-argparse.patch

This commit is contained in:
Thomas Goirand
2014-02-10 14:25:23 +08:00
parent 937cea4b79
commit a1bff9a482
3 changed files with 1 additions and 19 deletions

1
debian/changelog vendored
View File

@@ -2,6 +2,7 @@ python-lesscpy (0.10-1) unstable; urgency=medium
* New upstream release.
* Updated upstream VCS in debian/copyright and debian/rules.
* Removed fixup-python3-argparse.patch.
-- Thomas Goirand <zigo@debian.org> Mon, 10 Feb 2014 14:22:30 +0800

View File

@@ -1,18 +0,0 @@
Description: Fixup for python3.3 compat
Author: James Page <james.page@ubuntu.com>
Forwarded: https://github.com/robotis/Lesscpy/pull/23
--- a/lesscpy/scripts/compiler.py
+++ b/lesscpy/scripts/compiler.py
@@ -84,8 +84,9 @@ def run():
"""Run compiler
"""
aparse = argparse.ArgumentParser(description='LessCss Compiler',
- epilog='<< jtm@robot.is @_o >>',
- version=VERSION_STR)
+ epilog='<< jtm@robot.is @_o >>')
+ aparse.add_argument('-v', '--version', action='version',
+ version=VERSION_STR)
aparse.add_argument('-I', '--include', action="store", type=str,
help="Included less-files (comma separated)")
aparse.add_argument('-V', '--verbose', action="store_true",

View File

@@ -1,2 +1 @@
remove_non_ascii_chars_from_license.patch
fixup-python3-argparse.patch