Skip to content
This repository has been archived by the owner on May 7, 2024. It is now read-only.

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mahtin committed Oct 25, 2016
1 parent 1555a85 commit e0336e1
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CloudFlare/api_v4.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,8 +220,9 @@ def api_v4(self):
# The API commands for CTM /zones/:zone_id/load_balancers & /user/load_balancers
setattr(zones, "load_balancers",
self._add_with_auth(self._base, "zones", "load_balancers"))

setattr(user, "load_balancers",
self._add_with_auth(self._base, "user/load_balancers"))
self._add_unused(self._base, "user/load_balancers"))
user_load_balancers = getattr(user, "load_balancers")
setattr(user_load_balancers, "global_policies",
self._add_with_auth(self._base, "user/load_balancers/global_policies"))
Expand Down
4 changes: 4 additions & 0 deletions tests/build-matrix.sh → unused/build-matrix.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
:

#
# A Hack - not worth publishing
#

tmp="/tmp/c$$"
tmp="/tmp/c0"

Expand Down
File renamed without changes.
4 changes: 4 additions & 0 deletions tests/create-readme-rst.py → unused/create-readme-rst.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
#!/usr/bin/env python

#
# A Hack - not worth publishing
#

import os
import pypandoc

Expand Down

0 comments on commit e0336e1

Please sign in to comment.