Fixed improper python shebang

This commit is contained in:
Raelon Masters
2020-05-31 13:51:25 -04:00
parent 7ee9c57ed1
commit 60f7184a3a
3 changed files with 9 additions and 8 deletions

View File

@@ -1,4 +1,4 @@
#!/usr/bin/python
#!/usr/bin/env python
import os
import sys
import time
@@ -16,7 +16,7 @@ def MakeCollections(root):
config = Config(root) # Get configuration settings
# InitFiles(config.file_array) # Initialize file system
_storage = Storage(config)
_storage.make_collections()
_storage.make_collections()
_t2 = time.time()
scan_time = round(_t2 - _t1)
print("Collections Made.")