aboutsummaryrefslogtreecommitdiff
path: root/rambo.py
diff options
context:
space:
mode:
Diffstat (limited to 'rambo.py')
-rwxr-xr-xrambo.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/rambo.py b/rambo.py
index ae006cc..18510aa 100755
--- a/rambo.py
+++ b/rambo.py
@@ -192,8 +192,8 @@ class metaSet(object):
def read_manifest(self):
mf = open(self.manfile, 'r')
self.manifest = safe_load(mf)
- self.channel = (self.manifest['channel_URL'].strip('/'))
- ('/' + self.platform)
+ self.channel = self.manifest['channel_URL'].strip('/')
+ self.channel += '/' + self.platform
self.versions['numpy'] = str(self.manifest['numpy_version'])
def filter_by_manifest(self):