Skip to content

Commit

Permalink
Grr. 4.1-rc2
Browse files Browse the repository at this point in the history
  • Loading branch information
Katharine committed Jan 29, 2016
1 parent 1053f3b commit 2a6ab5c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pebble_tool/sdk/emulator.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ def _copy_spi_image(self, path):

# Copy the compressed file.
with bz2.BZ2File(sdk_qemu_spi_flash) as from_file:
with open(path, 'bw') as to_file:
with open(path, 'wb') as to_file:
while True:
data = from_file.read(512)
if not data:
Expand Down
2 changes: 1 addition & 1 deletion pebble_tool/version.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
version_base = (4, 1, 0)
version_suffix = 'rc1'
version_suffix = 'rc2'

if version_suffix is None:
__version_info__ = version_base
Expand Down

0 comments on commit 2a6ab5c

Please sign in to comment.