diff options
| author | Ben Finney <ben@benfinney.id.au> | 2008-05-16 19:27:02 +1000 |
|---|---|---|
| committer | Ben Finney <ben@benfinney.id.au> | 2008-05-16 19:27:02 +1000 |
| commit | 04dfb70356fc46a1b4e75f3370a4d64b5cc2d9b4 (patch) | |
| tree | 1cdd5619690ecd19c8c0033740a32332da14a9a9 /setup.py | |
| parent | 0d12af28d4de2745f8831abf0224ceabec693b76 (diff) | |
| download | python-apt-04dfb70356fc46a1b4e75f3370a4d64b5cc2d9b4.tar.gz | |
Remove redundant semicolons from statements.
Diffstat (limited to 'setup.py')
| -rwxr-xr-x | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -9,12 +9,12 @@ import glob, os, string # The apt_pkg module files = map(lambda source: "python/"+source, string.split(parse_makefile("python/makefile")["APT_PKG_SRC"])) -apt_pkg = Extension("apt_pkg", files, libraries=["apt-pkg"]); +apt_pkg = Extension("apt_pkg", files, libraries=["apt-pkg"]) # The apt_inst module files = map(lambda source: "python/"+source, string.split(parse_makefile("python/makefile")["APT_INST_SRC"])) -apt_inst = Extension("apt_inst", files, libraries=["apt-pkg", "apt-inst"]); +apt_inst = Extension("apt_inst", files, libraries=["apt-pkg", "apt-inst"]) # Replace the leading _ that is used in the templates for translation templates = [] |
