Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
mgedmin committed Jan 30, 2017
1 parent a1869dc commit 3002aff
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
8 changes: 4 additions & 4 deletions appveyor.yml
Expand Up @@ -4,10 +4,10 @@ environment:
matrix:
# http://www.appveyor.com/docs/installed-software#python lists available
# versions
- PYTHON: "C:\\Python27"
- PYTHON: "C:\\Python33"
- PYTHON: "C:\\Python34"
- PYTHON: "C:\\Python35"
## - PYTHON: "C:\\Python27"
## - PYTHON: "C:\\Python33"
## - PYTHON: "C:\\Python34"
## - PYTHON: "C:\\Python35"
- PYTHON: "C:\\Python36"

init:
Expand Down
1 change: 1 addition & 0 deletions check_manifest.py
Expand Up @@ -377,6 +377,7 @@ def _get_terminal_encoding(self):
def get_versioned_files(cls):
"""List all files versioned in Bazaar in the current directory."""
encoding = cls._get_terminal_encoding()
print("Guessing terminal encoding is", encoding)
output = run(['bzr', 'ls', '-VR'], encoding=encoding)
return output.splitlines()

Expand Down
1 change: 1 addition & 0 deletions tests.py
Expand Up @@ -883,6 +883,7 @@ def test_get_vcs_files_nonascii_filenames(self):
# A spelling of u"\xe9.txt" that works on Python 3.2 too
filename = b'\xc3\xa9.txt'.decode('UTF-8')
self._create_and_add_to_vcs([filename])
print(os.listdir())
self.assertEqual(get_vcs_files(), [filename])


Expand Down

0 comments on commit 3002aff

Please sign in to comment.