diff options
author | Matt Rendina <mrendina@stsci.edu> | 2017-04-18 15:09:35 -0400 |
---|---|---|
committer | Matt Rendina <mrendina@stsci.edu> | 2017-04-18 15:09:35 -0400 |
commit | 6b54e22f3ac89586956a5a61519294e339b2260d (patch) | |
tree | 7d609b6285eaea1279cf5f4b22f4416b5d812b76 | |
parent | a995c1160808ce3be3de0165bd48bbe84b0320a5 (diff) | |
download | rambo-6b54e22f3ac89586956a5a61519294e339b2260d.tar.gz |
string composition fix
-rwxr-xr-x | rambo.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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): |