Skip to content

Commit 961342a

Browse files
authored
Merge pull request #37 from Boltgolt/dev
Version 2.2.2
2 parents 4ec9dc3 + 5e72907 commit 961342a

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

debian/changelog

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
howdy (2.2.2) xenial; urgency=medium
2+
3+
* Fixed fetching of wrong config section (thanks @halcyoncheng and @arifeinberg!)
4+
5+
-- boltgolt <[email protected]> Fri, 11 May 2018 10:43:03 +0200
6+
17
howdy (2.2.1) xenial; urgency=medium
28

39
* Added mechanism to keep config files between updates

src/cli/add.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
video_capture = cv2.VideoCapture(int(config.get("video", "device_id")))
8383

8484
# Force MJPEG decoding if true
85-
if config.get("debug", "force_mjpeg") == "true":
85+
if config.get("video", "force_mjpeg") == "true":
8686
video_capture.set(cv2.CAP_PROP_FOURCC, 1196444237)
8787

8888
# Request a frame to wake the camera up

src/cli/test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
video_capture = cv2.VideoCapture(int(config.get("video", "device_id")))
2222

2323
# Force MJPEG decoding if true
24-
if config.get("debug", "force_mjpeg") == "true":
24+
if config.get("video", "force_mjpeg") == "true":
2525
video_capture.set(cv2.CAP_PROP_FOURCC, 1196444237)
2626

2727
# Let the user know what's up

0 commit comments

Comments
 (0)