diff options
author | Bryan Bishop <kanzure@gmail.com> | 2013-06-25 22:25:50 -0500 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2013-06-25 22:25:50 -0500 |
commit | b710b8721eb12db39ba0413fdaede654999a426a (patch) | |
tree | b50ff1a63bf8dba8f82b27f9c11574bfe3afd6de /preprocessor.py | |
parent | ad6e271dec7ac0d23a8e140a6fb7efabe094f5eb (diff) |
don't mix tabs/whitespace
Diffstat (limited to 'preprocessor.py')
-rw-r--r-- | preprocessor.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/preprocessor.py b/preprocessor.py index 468ae41a5..242732094 100644 --- a/preprocessor.py +++ b/preprocessor.py @@ -579,7 +579,7 @@ def read_line(l): # export all labels if ':' in asm[:asm.find('"')]: - sys.stdout.write('GLOBAL ' + asm.split(':')[0] + '\n') + sys.stdout.write('GLOBAL ' + asm.split(':')[0] + '\n') # expect preprocessed .asm files if "INCLUDE" in asm: |