Module: deluge Branch: 1.3-stable Commit: 603ca1b8555bd4540511a1c6da0a78ef70cddf85
Author: Calum Lind <[email protected]> Date: Thu Jul 28 22:34:15 2011 +0100 Fix i18n sub-dir issue in gitignore Also fixes trailing whitespace in setup.py --- .gitignore | 2 +- setup.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 2e38c01..2a7eb4d 100644 --- a/.gitignore +++ b/.gitignore @@ -7,5 +7,5 @@ dist *.pyc *.tar.* _trial_temp -deluge/i18n/* +deluge/i18n/*/ *.desktop diff --git a/setup.py b/setup.py index 6028b9c..160a96f 100644 --- a/setup.py +++ b/setup.py @@ -289,7 +289,7 @@ class build_trans(cmd.Command): msgfmt.make(src, dest) else: uptoDate = True - + if uptoDate: sys.stdout.write(' po files already upto date. ') sys.stdout.write('\b\b \nFinished compiling translation files. \n') @@ -498,7 +498,7 @@ _data_files = [ if not windows_check(): _data_files.append(('share/applications', ['deluge/data/share/applications/deluge.desktop'])) - + entry_points = { "console_scripts": [ "deluge-console = deluge.ui.console:start", @@ -514,7 +514,7 @@ entry_points = { if windows_check(): entry_points["console_scripts"].append("deluge-debug = deluge.main:start_ui") - + # Main setup setup( name = "deluge", -- You received this message because you are subscribed to the Google Groups "deluge-commit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/deluge-commit?hl=en.
