diff options
| author | Ben Finney <ben@benfinney.id.au> | 2008-05-16 19:36:09 +1000 |
|---|---|---|
| committer | Ben Finney <ben@benfinney.id.au> | 2008-05-16 19:36:09 +1000 |
| commit | 97c3c24b3060e8280fffed68ed60a68e04f382ca (patch) | |
| tree | 8bedb2453c84881c12d4655ab3afc1e59bdaa496 /aptsources | |
| parent | 0432da5b015c8dfa30adb03c9fb9f5a83251acdd (diff) | |
| download | python-apt-97c3c24b3060e8280fffed68ed60a68e04f382ca.tar.gz | |
Statements on separate lines, to conform with PEP 8.
Diffstat (limited to 'aptsources')
| -rw-r--r-- | aptsources/distinfo.py | 3 | ||||
| -rw-r--r-- | aptsources/distro.py | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/aptsources/distinfo.py b/aptsources/distinfo.py index 57266a49..ce90faac 100644 --- a/aptsources/distinfo.py +++ b/aptsources/distinfo.py @@ -34,7 +34,8 @@ import re import gettext -def _(s): return gettext.dgettext("python-apt", s) +def _(s): + return gettext.dgettext("python-apt", s) class Template: diff --git a/aptsources/distro.py b/aptsources/distro.py index f39f6748..888e6e06 100644 --- a/aptsources/distro.py +++ b/aptsources/distro.py @@ -30,7 +30,8 @@ import sys import gettext -def _(s): return gettext.dgettext("python-apt", s) +def _(s): + return gettext.dgettext("python-apt", s) class NoDistroTemplateException(Exception): |
