Skip to content
Snippets Groups Projects
Commit ca2e3645 authored by Jannis Konrad's avatar Jannis Konrad
Browse files

fix mixed " and '

parent 0b4b2f17
No related branches found
No related tags found
No related merge requests found
......@@ -10,7 +10,7 @@ class prepare_tinydtls(build_ext):
def run(self):
def run_command(args):
print("Running:", " ".join(args))
subprocess.check_call(args, cwd=os.path.join(os.path.dirname(__file__), "DTLSSocket','tinydtls"))
subprocess.check_call(args, cwd=os.path.join(os.path.dirname(__file__), "DTLSSocket","tinydtls"))
commands = [
["autoconf"],
["autoheader"],
......@@ -40,7 +40,7 @@ cy_build = cythonize([
setup(
name="DTLSSocket",
version='0.1.0',
version='0.1.1',
description = "DTLSSocket is a cython wrapper for tinydtls with a Socket like interface",
author = "Jannis Konrad",
author_email= "Jannis.Konrad@h-brs.de",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment