crcollins / pyOS

A simple pure Python OS.
44 stars 12 forks source link

Traceback error #3

Open RepubblicaTech opened 3 years ago

RepubblicaTech commented 3 years ago

Traceback (most recent call last): File "C:\Users\CraftMapping\Downloads\pyOS-master\pyOS.py", line 1, in from kernel.system import System File "C:\Users\CraftMapping\Downloads\pyOS-master\kernel\system.py", line 135 print "root %s has permisison for %s" % (laccess, path)

crcollins commented 3 years ago

Is there any more information? I thought this particular message was just a debug message I left in.

If you are using Python 3, this line will error due to print being changed from a statement to a function.

RepubblicaTech commented 3 years ago

Oh so i need python 2.7??

crcollins commented 3 years ago

Yeah, though, I do think an automated python 2to3 converter would probably work for this repo. I haven’t tested it though.