finally fixed that silly copyright date haha

This commit is contained in:
Eric Froemling 2020-04-04 16:18:30 -07:00
parent 8918d2ffaa
commit e101bcb65d
2 changed files with 1 additions and 3 deletions

View File

@ -78,7 +78,7 @@ class MainMenuActivity(ba.Activity):
'scale': scale, 'scale': scale,
'position': (0, 10), 'position': (0, 10),
'vr_depth': -10, 'vr_depth': -10,
'text': '\xa9 2018 Eric Froemling' 'text': '\xa9 2011-2020 Eric Froemling'
})) }))
# Throw up some text that only clients can see so they know that the # Throw up some text that only clients can see so they know that the

View File

@ -755,8 +755,6 @@ def checkenv() -> None:
print('Checking environment...', flush=True) print('Checking environment...', flush=True)
# Make sure they've got curl. # Make sure they've got curl.
# Make sure they've got our target python version.
if subprocess.run(['which', 'curl'], check=False, if subprocess.run(['which', 'curl'], check=False,
capture_output=True).returncode != 0: capture_output=True).returncode != 0:
raise CleanError(f'curl is required; please install it.') raise CleanError(f'curl is required; please install it.')