~sbeattie/conflictchecker/conflictchecker-fixups

« back to all changes in this revision

Viewing changes to bin/findconflicts

  • Committer: Robert Collins
  • Date: 2007-01-22 15:22:31 UTC
  • Revision ID: robertc@robertcollins.net-20070122152231-cbb405ccc4028d65
db version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python
 
2
 
 
3
"""findconflicts, an ubuntu archive scanner.
 
4
 
 
5
See the findconflicts python package for more details.
 
6
"""
 
7
 
 
8
import sys
 
9
 
 
10
# just run the Main() command class which is in the library and thus more
 
11
# testable.
 
12
 
 
13
from findconflicts import main
 
14
sys.exit(main.Main().run(sys.argv))