roysh 0.1.1__tar.gz → 0.1.2__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: roysh
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: A Python-based shell with tab completion
5
5
  Home-page: https://github.com/nishanroy561/RoySH
6
6
  Author: Nishan Roy
@@ -229,10 +229,12 @@ def main():
229
229
  today = datetime.now()
230
230
  if today.month == 2 and today.day == 14:
231
231
  print("Happy Valentine's Day")
232
+ elif today.month == 2 and today.day == 15:
233
+ print("Happy late Valentine's Day")
232
234
  elif today.month == 4 and today.day == 3:
233
235
  print("Happy Birthday Madam")
234
236
  else:
235
- print("No special celebration today.")
237
+ print(f"{cmd}: not found")
236
238
  else:
237
239
  found = False
238
240
  extensions = ['.exe', '.bat', '.cmd', ''] if os.name == 'nt' else ['']
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: roysh
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: A Python-based shell with tab completion
5
5
  Home-page: https://github.com/nishanroy561/RoySH
6
6
  Author: Nishan Roy
@@ -14,7 +14,7 @@ else:
14
14
 
15
15
  setup(
16
16
  name="roysh",
17
- version="0.1.1",
17
+ version="0.1.2",
18
18
  packages=find_packages(),
19
19
  entry_points={
20
20
  'console_scripts': [
File without changes
File without changes
File without changes
File without changes
File without changes