summaryrefslogtreecommitdiff
path: root/icktool
diff options
context:
space:
mode:
Diffstat (limited to 'icktool')
-rwxr-xr-xicktool6
1 files changed, 3 insertions, 3 deletions
diff --git a/icktool b/icktool
index b314c58..35cb251 100755
--- a/icktool
+++ b/icktool
@@ -174,10 +174,10 @@ class Icktool(cliapp.Application):
def _make_it_so(self, rc, objs):
for obj in objs:
- if projects.exists(obj):
- projects.update(obj)
+ if rc.exists(obj):
+ rc.update(obj)
else:
- project.create(obj)
+ rc.create(obj)
def cmd_list_projects(self, args):
self._prettyson(self._get_projects())