Skip to content

Commit cf1deb0

Browse files
committed
bug fix: upgrade
1 parent ca88fa6 commit cf1deb0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: plogical/upgrade.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2056,7 +2056,7 @@ def runSomeImportantBash():
20562056

20572057
CentOSPath = '/etc/redhat-release'
20582058

2059-
if not os.path.exists(CentOSPath):
2059+
if os.path.exists(CentOSPath):
20602060
cronPath = '/var/spool/cron/root'
20612061
else:
20622062
cronPath = '/var/spool/cron/crontabs/root'

0 commit comments

Comments
 (0)