~mvo/software-center/lp957599

« back to all changes in this revision

Viewing changes to softwarecenter/db/__init__.py

  • Committer: Michael Vogt
  • Date: 2012-03-15 09:35:11 UTC
  • mfrom: (2857.3.4 pep8-test)
  • Revision ID: michael.vogt@ubuntu.com-20120315093511-5ta37808e83l9sa2
mergedĀ lp:~elachuni/software-center/pep8-test-part17

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
import logging
2
2
try:
3
3
    from debfile import DebFileApplication
4
 
    DebFileApplication # pyflakes
 
4
    DebFileApplication  # pyflakes
5
5
except:
6
6
    logging.exception("DebFileApplication import")
7
 
    class DebFileApplication(): 
 
7
 
 
8
    class DebFileApplication():
8
9
        pass