Skip to content

Commit 74ff0c0

Browse files
committed
cleanups
1 parent 9774b24 commit 74ff0c0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/user_team_mgmt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
print 'User creation succeeded'
3535

3636
print 'Now trying to create a team with name ', team_name
37-
res = sdclient.create_team(team_name, users=['[email protected]'])
37+
res = sdclient.create_team(team_name)
3838
if res[0] == False:
3939
print 'Team creation failed: ', res[1]
4040
else:

sdcclient/_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
class SdcClient:
77
lasterr = None
88

9-
def __init__(self, token="", sdc_url='https://app-staging.sysdigcloud.com'):
9+
def __init__(self, token="", sdc_url='https://app.sysdigcloud.com'):
1010
self.token = os.environ.get("SDC_TOKEN", token)
1111
self.hdrs = {'Authorization': 'Bearer ' + self.token, 'Content-Type': 'application/json'}
1212
self.url = os.environ.get("SDC_URL", sdc_url)

0 commit comments

Comments
 (0)