Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
philipithomas committed Feb 23, 2016
1 parent ce683c9 commit 9f92d57
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -2,12 +2,12 @@

setup(name="staffjoy",
packages=find_packages(),
version="0.9",
version="0.10",
description="Staffjoy API Wrapper in Python",
author="Philip Thomas",
author_email="help@staffjoy.com",
license="MIT",
url="https://github.com/staffjoy/client_python",
download_url="https://github.com/StaffJoy/client_python/archive/0.9.tar.gz",
download_url="https://github.com/StaffJoy/client_python/archive/0.10.tar.gz",
keywords=["staffjoy-api", "staffjoy", "staff joy"],
install_requires=["requests[security]"], )
2 changes: 1 addition & 1 deletion staffjoy/resources/chomp_task.py
Expand Up @@ -2,6 +2,6 @@


class ChompTask(Resource):
PATH = "/internal/tasking/chomp/{schedule_id}"
PATH = "internal/tasking/chomp/{schedule_id}"
ENVELOPE = None
ID_NAME = "schedule_id"
2 changes: 1 addition & 1 deletion staffjoy/resources/mobius_task.py
Expand Up @@ -2,6 +2,6 @@


class MobiusTask(Resource):
PATH = "/internal/tasking/mobius/{schedule_id}"
PATH = "internal/tasking/mobius/{schedule_id}"
ID_NAME = "schedule_id"
ENVELOPE = None

0 comments on commit 9f92d57

Please sign in to comment.