Skip to content

Commit

Permalink
Merge pull request #110 from cclauss/patch-1
Browse files Browse the repository at this point in the history
Define unicode in Python 3 for line 42
  • Loading branch information
joshgreaves authored Oct 8, 2018
2 parents 954450d + 640b599 commit d0fec66
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions holodeck/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
import math
import os

try:
unicode # Python 2
except NameError:
unicode = str # Python 3


def get_holodeck_path():
"""Gets the path of the holodeck environment
Expand Down

0 comments on commit d0fec66

Please sign in to comment.