Skip to content

Commit

Permalink
Testing python modules
Browse files Browse the repository at this point in the history
  • Loading branch information
CheezBoiger committed Jan 9, 2017
1 parent fbd9972 commit f6108a6
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 1 deletion.
Binary file added scripts/__pycache__/__init__.cpython-36.pyc
Binary file not shown.
Binary file modified scripts/__pycache__/editor.cpython-36.pyc
Binary file not shown.
2 changes: 1 addition & 1 deletion scripts/editor.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@
import string

def VersionEdit(str):
str.lower()
print("testing python modules.")
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
import os
import time
import sys
import scripts.editor as editor

def InstallCMake():
"""
Expand All @@ -38,6 +39,7 @@ def CheckOS(cmake_cmd):
Check the operating system that this script is setting up on.
:return:
"""
editor.VersionEdit("cat")
platform = sys.platform
if platform.startswith('linux'):
print("Running on Linux")
Expand Down

0 comments on commit f6108a6

Please sign in to comment.