Skip to content

Commit

Permalink
closes #496
Browse files Browse the repository at this point in the history
  • Loading branch information
estebanlm committed Oct 26, 2017
1 parent b450fa5 commit 5b71157
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,7 @@ newRequestTo: aString
username: self credentials username
password: self credentials password ] ];
headerAt: 'Accept' put: 'application/vnd.github.v3+json';
url: 'https://api.github.com/', aString;
url: 'https://api.github.com/', (aString first = $/
ifTrue: [ aString allButFirst ]
ifFalse: [ aString ]);
yourself
6 changes: 3 additions & 3 deletions Iceberg-Plugin-GitHub.package/monticello.meta/categories.st
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
SystemOrganization addCategory: #'Iceberg-Plugin-GitHub'!
SystemOrganization addCategory: 'Iceberg-Plugin-GitHub-Model'!
SystemOrganization addCategory: 'Iceberg-Plugin-GitHub-Utils'!
SystemOrganization addCategory: 'Iceberg-Plugin-GitHub-View'!
SystemOrganization addCategory: #'Iceberg-Plugin-GitHub-Model'!
SystemOrganization addCategory: #'Iceberg-Plugin-GitHub-Utils'!
SystemOrganization addCategory: #'Iceberg-Plugin-GitHub-View'!

0 comments on commit 5b71157

Please sign in to comment.