Skip to content

Commit

Permalink
basestring fix from here: amnong/easywebdav#26
Browse files Browse the repository at this point in the history
  • Loading branch information
willhaines committed Sep 16, 2015
1 parent f4db9b8 commit 8a3efc2
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions skrf/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,11 @@
from subprocess import Popen,PIPE
# globals

# compatability
try:
basestring
except NameError:
basestring = (str, bytes)

# other
def now_string():
Expand Down

0 comments on commit 8a3efc2

Please sign in to comment.