~ubuntu-branches/ubuntu/trusty/dput-ng/trusty-proposed

« back to all changes in this revision

Viewing changes to dput/command.py

  • Committer: Package Import Robot
  • Author(s): Paul Tagliamonte, Arno Töll, Ansgar Burchardt, Paul Tagliamonte
  • Date: 2012-12-04 09:19:39 UTC
  • Revision ID: package-import@ubuntu.com-20121204091939-u99bdiu23jevgxn5
Tags: 1.1
* The "monday afternoon's a rather awkward day to get so drunk" release

[ Arno Töll ]
* Clarify copyight for dput/changes.py: It's MIT, not GPL
* Install dput.cf(5) to the correct man page directory.
* Fix a bunch of grammar and Python styling issues - thanks to Jakub Wilk
  for the pointers.
* Fix "FTBFS: a2x call -> missing build dependency on docbook-xsl" add
  docbook-xsl to the build dependencies. Thanks gregoa for spotting it and
  providing a fix (Closes: #694983)

[ Ansgar Burchardt ]
* debian/control: Add Vcs-{Browser,Git} fields.
* debian/control: Conflicts: dput instead of Breaks.
* debian/control: Don't use hyphens in the package description.

[ Paul Tagliamonte ]
* debian/copyright: move to DEP5.
* debian/control: remove senseless multiarch tags
* debian/control: add Homepage
* debian/control: since we conflict with dput-old, mark this as priority
  extra.
* other random pythonic fixes pointed out by Jakub.
   + pep8'd `klass' to `cls'
   + clean the .coverage file
   + remove the except:\n\tpass

Show diffs side-by-side

added added

removed removed

Lines of Context:
91
91
    email_address = os.environ.get("DEBEMAIL", None)
92
92
    if email_address is None:
93
93
        email_address = os.environ.get("EMAIL", None)
 
94
    # XXX: if None, set to "{username}@{host}".format(...)
94
95
 
95
96
    name = os.environ.get("DEBFULLNAME", None)
96
97