Skip to content

Commit

Permalink
move generator to python3
Browse files Browse the repository at this point in the history
  • Loading branch information
geohot committed Sep 27, 2019
1 parent 9efff40 commit f3b5735
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions generator/generator.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python2
#!/usr/bin/env python3
import os
import re

Expand Down Expand Up @@ -40,10 +40,10 @@ def create_dbc(dir_name, filename):
if dir_name == cur_path:
continue

print dir_name
print(dir_name)
for filename in filenames:
if filename.startswith('_'):
continue

print filename
print(filename)
create_dbc(dir_name, filename)

0 comments on commit f3b5735

Please sign in to comment.