Skip to content

Commit b8c89a7

Browse files
committed
commit v 0.10.2 correctly to github
1 parent 0b7fd6a commit b8c89a7

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

sqlite_bro/sqlite_bro.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ class App:
3232
"""the GUI graphic application"""
3333
def __init__(self):
3434
"""create a tkk graphic interface with a main window tk_win"""
35-
self.__version__ = '0.10.1'
36-
self._title = "of 2021-08-01b : 'Hello, scripting World!'"
35+
self.__version__ = '0.10.2'
36+
self._title = "of 2021-08-01b : 'Hello, better scripting World!'"
3737
self.conn = None # Baresql database object
3838
self.database_file = ""
3939
self.tk_win = Tk()
@@ -1604,7 +1604,7 @@ def _main():
16041604
parser.add_argument("-db", "--database", default=":memory:", type=str, help="specify initial Database if not ':memory:'")
16051605
parser.add_argument("-sc", "--scripts", type=str, help="qive a list of initial scripts")
16061606
args = parser.parse_args()
1607-
print(args)
1607+
#print(args)
16081608
app = App()
16091609
# start with a memory Database and a welcome
16101610
app.new_db(":memory:")

0 commit comments

Comments
 (0)