Skip to content

Commit

Permalink
Bump up version, print version to title when run
Browse files Browse the repository at this point in the history
and try to add VERSION attribute, not sure I did it right 🐫
  • Loading branch information
llakssz committed Nov 3, 2016
1 parent 72a4846 commit 34f493c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions FunKiiU.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
# FunKiiU 2.0.2
# FunKiiU 2.2

from __future__ import unicode_literals, print_function

__VERSION__ = 2.2

import argparse
import base64
import binascii
Expand Down Expand Up @@ -324,7 +326,7 @@ def process_title_id(title_id, title_key, name=None, region=None, output_dir=Non

def main(titles=None, keys=None, onlinekeys=False, onlinetickets=False, download_regions=False, output_dir=None,
retry_count=3, patch_demo=True, patch_dlc=True, simulate=False, tickets_only=False):
print('*******\nFunKiiU by cearp and the cerea1killer\n*******\n')
print('*******\nFunKiiU {} by cearp and the cerea1killer\n*******\n'.format(__VERSION__))
titlekeys_data = []

if download_regions is None:
Expand Down

0 comments on commit 34f493c

Please sign in to comment.