Skip to content
This repository has been archived by the owner on Jun 17, 2022. It is now read-only.

Commit

Permalink
fixed bad messages
Browse files Browse the repository at this point in the history
  • Loading branch information
Zer1t0 authored and Zer1t0 committed May 14, 2019
1 parent 5773cb2 commit 24114e3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ optional arguments:
Example:
```
$ python ticket_converter.py ticket.ccache ticket.kirbi
Converting kirbi => ccache
Converting ccache => kirbi
```

```
$ python ticket_converter.py ticket.kirbi ticket.ccache
Converting ccache => kirbi
```
Converting kirbi => ccache
```
4 changes: 2 additions & 2 deletions ticket_converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ def main():
args = parse_args()

if is_kirbi_file(args.input_file):
print('Converting ccache => kirbi')
print('Converting kirbi => ccache')
convert_kirbi_to_ccache(args.input_file, args.output_file)
elif is_ccache_file(args.input_file):
print('Converting kirbi => ccache')
print('Converting ccache => kirbi')
convert_ccache_to_kirbi(args.input_file, args.output_file)
else:
print('Unknown file format')
Expand Down

0 comments on commit 24114e3

Please sign in to comment.