Skip to content

Commit 2a6ab5c

Browse files
committed
Grr. 4.1-rc2
1 parent 1053f3b commit 2a6ab5c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

pebble_tool/sdk/emulator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ def _copy_spi_image(self, path):
264264

265265
# Copy the compressed file.
266266
with bz2.BZ2File(sdk_qemu_spi_flash) as from_file:
267-
with open(path, 'bw') as to_file:
267+
with open(path, 'wb') as to_file:
268268
while True:
269269
data = from_file.read(512)
270270
if not data:

pebble_tool/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
version_base = (4, 1, 0)
2-
version_suffix = 'rc1'
2+
version_suffix = 'rc2'
33

44
if version_suffix is None:
55
__version_info__ = version_base

0 commit comments

Comments
 (0)