Skip to content

Commit

Permalink
Add "testedwith" and remove stray newline
Browse files Browse the repository at this point in the history
  • Loading branch information
edvbld committed Sep 10, 2019
1 parent fadd0cd commit c25afe0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 0 additions & 1 deletion cli/src/main/java/org/openjdk/skara/cli/GitFork.java
Expand Up @@ -153,7 +153,6 @@ public static void main(String[] args) throws IOException {
path = path.substring(1);
}

System.out.println("path: " + path);
var fork = host.getRepository(path).fork();

if (token == null) {
Expand Down
4 changes: 3 additions & 1 deletion skara.py
Expand Up @@ -25,6 +25,8 @@
import sys
import shutil

testedwith = '4.9.2'

cmdtable = {}
if hasattr(mercurial, 'registrar') and hasattr(mercurial.registrar, 'command'):
command = mercurial.registrar.command(cmdtable)
Expand Down Expand Up @@ -152,4 +154,4 @@ def info(ui, repo, rev, **opts):
]
@command('pr', info_opts, 'hg pr <list|fetch|show|checkout|apply|integrate|approve|create|close|update>')
def pr(ui, repo, action, **opts):
_skara(ui, ['pr', '--mercurial', action], **opts)
_skara(ui, ['pr', '--mercurial', action], **opts)

0 comments on commit c25afe0

Please sign in to comment.