Skip to content

Commit

Permalink
fix style warnings in scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
dirk-thomas committed Jul 9, 2017
1 parent 37fadce commit edcde1e
Show file tree
Hide file tree
Showing 16 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions scripts/vcs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/usr/bin/env python

import sys

from vcstool.commands.vcs import main

sys.exit(main() or 0)
1 change: 1 addition & 0 deletions scripts/vcs-branch
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/usr/bin/env python

import sys

from vcstool.commands.branch import main

sys.exit(main() or 0)
1 change: 1 addition & 0 deletions scripts/vcs-bzr
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/usr/bin/env python

import sys

from vcstool.commands.custom import bzr_main

sys.exit(bzr_main() or 0)
1 change: 1 addition & 0 deletions scripts/vcs-custom
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/usr/bin/env python

import sys

from vcstool.commands.custom import main

sys.exit(main() or 0)
1 change: 1 addition & 0 deletions scripts/vcs-diff
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/usr/bin/env python

import sys

from vcstool.commands.diff import main

sys.exit(main() or 0)
1 change: 1 addition & 0 deletions scripts/vcs-export
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/usr/bin/env python

import sys

from vcstool.commands.export import main

sys.exit(main() or 0)
1 change: 1 addition & 0 deletions scripts/vcs-git
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/usr/bin/env python

import sys

from vcstool.commands.custom import git_main

sys.exit(git_main() or 0)
1 change: 1 addition & 0 deletions scripts/vcs-help
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/usr/bin/env python

import sys

from vcstool.commands.help import main

sys.exit(main() or 0)
1 change: 1 addition & 0 deletions scripts/vcs-hg
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/usr/bin/env python

import sys

from vcstool.commands.custom import hg_main

sys.exit(hg_main() or 0)
1 change: 1 addition & 0 deletions scripts/vcs-import
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/usr/bin/env python

import sys

from vcstool.commands.import_ import main

sys.exit(main() or 0)
1 change: 1 addition & 0 deletions scripts/vcs-log
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/usr/bin/env python

import sys

from vcstool.commands.log import main

sys.exit(main() or 0)
1 change: 1 addition & 0 deletions scripts/vcs-pull
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/usr/bin/env python

import sys

from vcstool.commands.pull import main

sys.exit(main() or 0)
1 change: 1 addition & 0 deletions scripts/vcs-push
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/usr/bin/env python

import sys

from vcstool.commands.push import main

sys.exit(main() or 0)
1 change: 1 addition & 0 deletions scripts/vcs-remotes
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/usr/bin/env python

import sys

from vcstool.commands.remotes import main

sys.exit(main() or 0)
1 change: 1 addition & 0 deletions scripts/vcs-status
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/usr/bin/env python

import sys

from vcstool.commands.status import main

sys.exit(main() or 0)
1 change: 1 addition & 0 deletions scripts/vcs-svn
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/usr/bin/env python

import sys

from vcstool.commands.custom import svn_main

sys.exit(svn_main() or 0)

0 comments on commit edcde1e

Please sign in to comment.