Skip to content

Commit

Permalink
Merge branch 'requests/github/179' into devel
Browse files Browse the repository at this point in the history
  • Loading branch information
guyzmo committed Feb 3, 2018
2 parents c40db4f + 736f929 commit 9249201
Show file tree
Hide file tree
Showing 21 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion git_repo/exceptions.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

class ArgumentError(ValueError):
pass
Expand Down
2 changes: 1 addition & 1 deletion git_repo/kwargparse.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

import logging
log = logging.getLogger('git_repo.kwargparse')
Expand Down
2 changes: 1 addition & 1 deletion git_repo/repo.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env pytho
#!/usr/bin/env python3

'''
Usage:
Expand Down
2 changes: 1 addition & 1 deletion git_repo/services/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/usr/bin/env python
#!/usr/bin/env python3

2 changes: 1 addition & 1 deletion git_repo/services/ext/bitbucket.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

import logging
log = logging.getLogger('git_repo.bitbucket')
Expand Down
2 changes: 1 addition & 1 deletion git_repo/services/ext/gitbucket.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

import logging
log = logging.getLogger('git_repo.gitbucket')
Expand Down
2 changes: 1 addition & 1 deletion git_repo/services/ext/github.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

import logging
log = logging.getLogger('git_repo.github')
Expand Down
2 changes: 1 addition & 1 deletion git_repo/services/ext/gitlab.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

import logging
log = logging.getLogger('git_repo.gitlab')
Expand Down
2 changes: 1 addition & 1 deletion git_repo/services/ext/gogs.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
import sys
import logging
log = logging.getLogger('git_repo.gogs')
Expand Down
2 changes: 1 addition & 1 deletion git_repo/services/service.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

import logging
log = logging.getLogger('git_repo.base')
Expand Down
2 changes: 1 addition & 1 deletion git_repo/tools.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

import sys
import shutil
Expand Down
2 changes: 1 addition & 1 deletion tests/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
#!/usr/bin/env python
#!/usr/bin/env python3
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

import os

Expand Down
2 changes: 1 addition & 1 deletion tests/helpers.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

from tempfile import TemporaryDirectory
from git import Repo, Git
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/local/gitbucket/init.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# coding: utf-8

import requests
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/test_bitbucket.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

import logging

Expand Down
2 changes: 1 addition & 1 deletion tests/integration/test_gitbucket.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

import os
import sys
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/test_github.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

import os
import sys
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/test_gitlab.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

import logging

Expand Down
2 changes: 1 addition & 1 deletion tests/integration/test_gogs.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

import logging

Expand Down
2 changes: 1 addition & 1 deletion tests/integration/test_main.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

import logging
import pytest
Expand Down

0 comments on commit 9249201

Please sign in to comment.