Skip to content

Commit

Permalink
make Python 3 compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
valkjsaaa committed Mar 9, 2017
1 parent 05356de commit 6b2e646
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion droneconfig.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python

import ConfigParser
from configparser import ConfigParser
import dronedict

CONFIG_FILE = 'drone.conf'
Expand Down
2 changes: 1 addition & 1 deletion minidrone.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import time
import pexpect
import threading
from Queue import Queue
from queue import Queue
import binascii
import os
import re
Expand Down

0 comments on commit 6b2e646

Please sign in to comment.