Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions payjp/resource.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,13 @@
# coding: utf-8

import datetime
import json
import logging
import sys

from six import string_types
from six.moves.urllib.parse import quote_plus

from . import (
api_requestor,
error,
util,
)
from payjp import api_requestor, error, util

logger = logging.getLogger('payjp')

Expand Down Expand Up @@ -337,6 +332,10 @@ def reauth(self, **kwargs):
self.refresh_from(self.request('post', url, kwargs))
return self

def tds_finish(self, **kwargs):
url = self.instance_url() + '/tds_finish'
self.refresh_from(self.request('post', url, kwargs))
return self

class Event(ListableAPIResource):
pass
Expand Down
2 changes: 1 addition & 1 deletion payjp/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = '0.1.0'
VERSION = '0.2.0'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

setup(
name="payjp",
version="0.1.0",
version="0.2.0",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

description='PAY.JP python bindings',
author="PAY.JP",
author_email='support@pay.jp',
Expand Down
Loading